Where are the Android icon drawables within the SDK?

user1914692 picture user1914692 · Aug 28, 2013 · Viewed 128.8k times · Source

In my design of UI of Android applications, I need some drawables for icons.

Where are the existing drawables located within the Android SDK?

Answer

TN888 picture TN888 · Aug 28, 2013

In android.R.drawable, read more here : http://docs.since2006.com/android/2.1-drawables.php


Simple resource usage :

android:icon="@android:drawable/ic_menu_save"

Simple Java usage :

myMenuItem.setIcon(android.R.drawable.ic_menu_save);