Where are the Android icon drawables within the SDK? -
in design of ui of android applications, need drawables icons.
where existing drawables located within android sdk?
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);
Comments
Post a Comment