Where can I find Android's default icons? [duplicate]

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" />

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

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


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

Update: You can find Material Design icons here.