I have a class derived from android.widget.Gallery and a class derived from BaseAdapter that has createBitmap overriden. The gallery will show a bunch of images that get downloaded from the Internet, but since user may choose not to watach all of them, I download each image only when necessary (i.e. when it gets displayed by Gallery). So on first call createBitmap returns a default "downloading image" icon and downloading of proper image gets scheduled. My activity gets notified when the image is ready. But I don't know how to force refresh of currently visible gallery object (although it's enough to scroll it out of the view and get back to it to see downloaded image). notifyDataSetChanged() gives no joy...
Any ideas?