I am using a GridView
having image as child items.
The getView
functions loads a default image from the application "Loading.gif" for all the child items.
In another thread I load all the images to some Bitmap type into the adapter.
Is it wise enough to call adapter.notifyDataSetChanged()
after each image is loaded ?
Or is there and alternative way to directly update the image ?