Reputation: 1284
I would like to know the possibility of copying an image from the sdcard in to the res/drawable folder of an Android application , these are very small Bitmaps located in an sdscard.
thanks in advance
Thank you for patiently answering my question , I am trying to locally store my bitmaps into the app local data location.
Upvotes: 0
Views: 860
Reputation: 21201
Its not possible to edit res folder as it has to be filled up at compile time in order to let the compile generate the R.java file.
Upvotes: 2
Reputation: 53687
It is not possible to add image to drawable directory pro-grammatically.
Upvotes: 1