Where can I find Android's default icons?

AndroidIcons

Android Problem Overview


> Possible Duplicate:
> Standard Android menu icons, for example refresh

Where can I find the name of the default Android menu icons (like refresh or compose)?

The code below has an error stating that the resource is not public

<item
    android:id="@+id/preference"
    android:icon="@android:drawable/ic_menu_refresh"
    android:showAsAction="ifRoom" />

Android Solutions


Solution 1 - Android

\path-to-your-android-sdk-folder\platforms\android-xx\data\res

Solution 2 - Android

you can use

android.R.drawable.xxx

(use autocomplete to see whats in there)

Or download the stuff from http://developer.android.com/design/downloads/index.html

Solution 3 - Android

You can find the default Android menu icons here - link is broken now.

Update: You can find Material Design icons here.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBlakeView Question on Stackoverflow
Solution 1 - AndroidTomislav NovoselecView Answer on Stackoverflow
Solution 2 - AndroidkoljaTMView Answer on Stackoverflow
Solution 3 - AndroidJagdeep SinghView Answer on Stackoverflow