How to get personal available for use in android?

I want to use private drawable from android. for this I have downloade androi-8.jar , which contains all the .png imgaes that I want to use in my work. I want to use "btn_circle_disable_focused" suitable for drawing, but it shows me an error regarding a private resource. I want to use it in the image.

0
source share
2 answers

You must copy the desired .png to your project / upload folder. you can access it from xml, for example, @*android:drawable/btn_circle_disable_focused , but this is not a good idea, because a limited identity means that it may not be available on some devices.

+2
source

Check the Google icon design to download every icon you want.

0
source

All Articles