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 Android Drawables website, but I would like to get the correct hdpi, mdpi and ldpi version, preferable the original ones.
Maybe a bit late. Completing the other answers, you have the hdpi refresh icon in:
"android_sdk"\platforms\"android_api_level"\data\res\drawable-hdpi\ic_menu_refresh.png
You can get the icons from the android sdk they are in this folder
$android-sdk\platforms\android-xx\data\res
After seeing this post I found a useful link:
http://developer.android.com/design/downloads/index.html
You can download a lot of sources editable with Fireworks, Illustrator, Photoshop, etc...
And there's also fonts and icon packs.
Here is a stencil example.
Bear in mind, this is a practice that Google explicitly advises not to do:
Rather, you are adviced to make a local copy:
Never mind, I found it in the source: base.git/core/res/res and subdirectories.
As others said in the comments, if you have the Android SDK installed it’s also on your computer. The path is
[SDK]/platforms/android-[VERSION]/data/res
.