Reputation: 11
I'm using Fedor's adapter and imageloader to lazy load images into an expandablelistview. (Lazy load of images in ListView) It works perfectly but with one problem. An image will only display when the imageview (in the listview row) goes off screen and then comes back on (via scrolling or collapsing and expanding the listview group.) Help would be much appreciated.
Upvotes: 1
Views: 1207
Reputation: 1093
Try calling invalidate()
on the ImageView, or notifyDataSetChanged()
on the adapter, after assigning the Drawable or Bitmap.
Upvotes: 1