sash
sash

Reputation: 1284

To copy an image from an sdcard into res/drawable folder of the Android app

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

Answers (2)

Ram kiran Pachigolla
Ram kiran Pachigolla

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

Sunil Kumar Sahoo
Sunil Kumar Sahoo

Reputation: 53687

It is not possible to add image to drawable directory pro-grammatically.

Upvotes: 1

Related Questions