dev_android
dev_android

Reputation: 8818

Write image in drawable using android 2.1

I have a bitmap object. I want to overwrite a .png image under drawable folder with the bitmap object content. I need a sample code to do this. Thanks in advance

Upvotes: 0

Views: 274

Answers (1)

mibollma
mibollma

Reputation: 15118

You can't overwrite resources in your application.

You can instead write to the internal memory or the sdcard.

Upvotes: 1

Related Questions