Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does ICS not come with some icons for Holo Light?

Tags:

android

I'm trying to use ic_menu_refresh in my project. However, I need it for the Holo Light theme, which I can't find in the Android SDK (android-15/data/res/drawable-hdpi). It's there for Holo Dark, though.

I also found it in the Gmail APK, so I could take it from there...

But why does Android 4.0 only come with some of the icons for both themes? (Or am I looking in the wrong place?)

like image 897
jmgrosen Avatar asked Jan 14 '12 01:01

jmgrosen


3 Answers

It doesn't appear that they come in the SDK /data/res/drawable-[SIZE], but you can get some of them from this page: http://developer.android.com/design/patterns/actionbar.html (or direct link: [REDACTED - see below])

That has both holo and holo light icons in that zip.

like image 68
Troy McCabe Avatar answered Oct 06 '22 01:10

Troy McCabe


You are right. And while you can download the zip file of all standard icons from the android design page (as @Troy McCabe said), this zip file does not include xxhdpi versions. The best way, which will also give you the xxhdpi version of standard icons in both Holo Light and Dark as well as custom colors, is to:

Go to Android asset studio and select Action bar and tab icons. In that page, select CLIPART as the Source and pick whichever icon that you want. You can select Holo Light, Dark, or any custom color for the icons.

like image 39
hadi Avatar answered Oct 05 '22 23:10

hadi


The best place for standard icons is Android Asset Studio

like image 30
Code Rebel Avatar answered Oct 06 '22 01:10

Code Rebel