Skip to content Skip to sidebar Skip to footer

Baseadapter In Listactivity Isn't Displaying The Correct Items

I have a ListActivity in which I am trying to display an ImageView under the List. I'm attempting to do this by creating my own BaseAdapter and using two different methods inside

Solution 1:

getView recycles views as you scroll. If convertView is not null, you still need to check that it is the correct type and set the correct values on it.


Post a Comment for "Baseadapter In Listactivity Isn't Displaying The Correct Items"