Is is it possible to save downloaded images from my site into the drawable
folder? I've preloaded the images, but how can I save them for later use?
Thanks!
Is is it possible to save downloaded images from my site into the drawable
folder? I've preloaded the images, but how can I save them for later use?
Thanks!
You can't save anything into the drawable folder. What is packaged at compile time is all it'll have.
Instead, you can save the images to the external storage, or into a database or into internal storage.
No, because there's no "drawable" folder at all. All your drawables remain in APK file after installation and your APK file is read only hence no modification of any sort is possible. Use SD card or application storage for storing files.