I have an ASync task that D/L the images for the list view. Have the listview and the listview adapter implementation working fine.
My question is: After D/L the images from the web... 1. Should I save it into a temporary directory and load it from there? OR 2. Should I keep it in memory? But in this case might consume lots of memory since the list size can be big. 3. If I have an image that was U/L before to the server, I need to show it in the listview as a small image (sample?). Should I jsut put the image in the imageview? Should I process the image and scale it?
Yoav