Skip to content Skip to sidebar Skip to footer

How To Get The Private Drawable To Use In Activity In Android?

I want to use private drawable from android. for that i have downloade androi-8.jar which contains all the .png imgaes i want to use in my activity. i want use 'btn_circle_disable_

Solution 1:

You should copy desired .png to your project's /drawable folder. you can access it from xml like @*android:drawable/btn_circle_disable_focused but it's not a good idea cause drawable being private means it may be unavailable on some devices.

Solution 2:

check this google icon design to download every icon you want.

Post a Comment for "How To Get The Private Drawable To Use In Activity In Android?"