The best way is to store images in SDcard with a separate folder. (Using internal memory wont be helpful as it would utilize the space required for installation of other application.)
Every time you load your application read the contents of the folder and populate your list. You need not to maintain seperate database for it. Use Caching Bitmaps for better performance of your code.
Best practice would be as per my opinion
- Make sure your cache uses SoftReferences, this way you can make sure that you don't run out of memory, and can always load new bitmaps on the "expense" of losing old ones.
- Use the Canvas' drawBitmap methods to draw the large-scale bitmaps smaller.
- Make sure you guard against OutOfMemoryError, and notice that it's a subclass of Throwable, and not a subclass of Exception, so a
catch(Exception e) clause will not catch it.