Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

5 Answers

up vote 106 down vote accepted

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.

share|improve this answer
46  
They are also on your development machine, in your SDK installation. – CommonsWare Apr 21 '10 at 23:04
Oh, you are right, they really are. Thanks, I feel stupid for downloading the git repository now ^^ – poke Apr 22 '10 at 8:49
41  
At ANDROID_SDK/platforms/android-2.1/data/res/drawable-hdpi for example. – Macarse May 15 '10 at 14:26
I've been looking for the answer to this for at least a week. Thanks! – metric152 Mar 17 '11 at 22:13
@Macarse How do we favorite a comment such as yours? I have to use google to find this topic and find your comment every time I want to find a standard icon, because that directory is too obscure to remember and not mentioned anywhere else on the internet. – ArtOfWarfare Aug 17 '12 at 20:41
show 1 more comment

Bear in mind, this is a practice that Google explicitly advises not to do:

Warning: Because these resources can change between platform versions, you should not reference these icons using the Android platform resource IDs (i.e. menu icons under android.R.drawable).

share|improve this answer
39  
But the next statment says: "If you want to use any icons or other internal drawable resources, you should store a local copy of those icons or drawables in your application resources, then reference the local copy from your application code. In that way, you can maintain control over the appearance of your icons, even if the system's copy changes." – Dmitry Egorenkov Apr 6 '11 at 6:24
6  
Right, I was just letting the OP know they should have been using local copies from the start, rather than by reference. – DMags Apr 7 '11 at 14:54

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

share|improve this answer

You can get the icons from the android sdk they are in this folder

$android-sdk\platforms\android-xx\data\res

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.