Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm lost in the Internet trying to find a reasonable list of all icons available under R.drawable, but the only that's not 404 is for android 2.2. Is there anything similar for the new Android UI?

share|improve this question
1  
sorry about asking, but... why closed? There's a bunch of other questions like this and this is the first one with a reasonable answer. This is not directly about code but is very important while coding an application since you have to know what icons you can use in the code. – Igoru Nov 16 '12 at 16:00

closed as off topic by Sam, martin clayton, akjoshi, Jean-François Corbett, Dominik Honnef Nov 16 '12 at 8:31

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 2 down vote accepted

I hope, in attempting to answer you question, I am not wrong in assuming the following. If I am, please do correct.

I am not aware of any new updates to that list of drawables in the site you have linked and personally, I have never found any similar websites with a comprehensive list of drawables for the newer platforms.

However, if you are looking specifically for the new Android UI (I am assuming, you mean ICS and above), you will find a decent list of drawables here: https://github.com/ChristopheVersieux/HoloEverywhere/tree/master/library/res It is not an exhaustive list though.

This link is to an Android Library called Holo Everywhere.

That being said, the best place to find drawables for the latest platform is right where you have setup your platforms for eclipse. On my workstation, I can get access to the default resources (platform specific) here:

C:\Program Files\Android\android-sdk\platforms\android-16\data\res

This has every resource used for the platform in question and I find it very useful especially while theming. I can refer to the XML's and see how they are setup.

share|improve this answer
Why didn't I tried the SDK folder? duh Specifically, all the icons can be found under drawable-hdpi folder (and some other resolution folders, like mdpi etc). Thank you so much for the tip! – Igoru Nov 16 '12 at 16:06
@Igoru: Glad to have helped. :-) – IceMAN Nov 16 '12 at 16:50
+1 Wow this is a great answer! I had never thought that all the Android resources must be somewhere locally on my disc! I've been searching for source online... how embarrassing! – Twice Circled Feb 21 at 15:55
@TwiceCircled: Happens to all of us fella. ;-) – IceMAN Feb 21 at 15:58

If you are after the ActionBar icons, Google have provided them on their Developer site under the headline "ActionBar": http://developer.android.com/design/style/iconography.html

Direct link to the zip file: http://developer.android.com/downloads/design/Android_Design_Icons_20120814.zip

share|improve this answer
I've already seen this. This is just a very small list of the icons available. – Igoru Nov 16 '12 at 15:58

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