I'm currently having problems with a load of thumbnails in my android application. The thumbnails are displayed in list views and I'm wondering if there is a way for me to know which list items are currently in use and stored for faster scrolling, so that I can recycle unused thumbnails if I get a out of memory response from the BitmapFactory.
To be more clear when loading an image into an image view this is really simple but is there a way to observed which items are currently in use or even better a method that is called in a list view when an item is thrown out?
Thanks in advance.