I have lots of Images in my app right now i put all in drawable. images have been pre-compressed/optimized for mobile viewing. (But I want these all images in sdcard and use that location instead of drawable. because of large amount of images)
One of my requirements is that I be able to provide offline access for users. I am wondering what would be the most efficient way
of storing a large amount of images (around four hundred-several thousand)
So My Plan is that I will Store all images in sdcard(by making a folder in it) and now store link of these images in data base Table.
So App first fetch image path from DB Table then fetch file from sdcard and display it.
But my problem is Where should i put these images while developing app.
(Should i put all my images in drawable and then copy it sdcard programitically and then start using that location !!! )
1) How to store all these images in sd-card at the time of development of application. ? 2) So when I will deploy my app these all images should available inside package ?