tags:

views:

3695

answers:

1

The android sdk offers the standard menu icons via android.R.drawable.X, however some standard icons, such as ic_menu_refresh (the refresh icon), are missing from android.R.

Is there any way to get the original icons, maybe by extracting them from the applications? I already checked the Android source, but it's a bit too huge to look everywhere for the images.

I know the androiddrawableexplorer website, but I would like to get the correct hdpi, mdpi and ldpi version, preferable the original ones.

Do you have any idea?

+7  A: 

Nevermind, found it in the source: base.git/core/res/res and subdirectories.

poke
They are also on your development machine, in your SDK installation.
CommonsWare
Oh, you are right, they really are. Thanks, I feel stupid for downloading the git repository now ^^
poke
At ANDROID_SDK/platforms/android-2.1/data/res/drawable-hdpi for example.
Macarse