I know how to create a ListView for images that are in the drawable folder, by creating an array that contains items that each one are drawable resources. and then by using a list and image adapter we get a photo listview.
I have a regular java array, that contains strings that represent the picture i want to include in the listview, how to create form this string array an image ListView?
thank you
You will have to use a SimpleAdapter
and then setViewBinder. Before binding each element of the list you will get a callback on
Depending on the textRepresentation you can setImage and then return true for only this case.