I have one image stored in res/drawable/icon.png
I need to set this Image to following function which accepts Drawable mButton.setCompoundDrawables()

so how to convert Resource to Drawable?

Thanks,
PP.

link|improve this question

feedback

1 Answer

up vote 27 down vote accepted

Your Activity should have the method getResources. Do:

Drawable myIcon = getResources().getDrawable( R.drawable.icon );
link|improve this answer
Do you need to add something else to the manifest for instance? I created an empty project with only this line of code in onCreate and I get Resources$NotFoundException. The project came with icon.png in hdpi, ldpi and mdpi map. – Vincent Mar 29 '11 at 14:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.