3

When I want to design UI and I need to know what are predefined icons. I searched net including http://developer.android.com/design/index.html but I didn't find complete repository about this.

I found http://www.darshancomputing.com/android/1.5-drawables.html but its information is too old.

Is there any source that collects all predefined icons and images?

Thank you very much.

Hesam
  • 52,260
  • 74
  • 224
  • 365

1 Answers1

11

You can see them if you go to your Android folder (containing the android-sdk, tools, etc.)

android-sdk/platforms/[CHOOSE ANDROID VERSION]/data/res/ and all of your icons are there.

Versions info:

  • android-7 in the platforms folder, for example, is Android 2.1, while android-3 is 1.5 (just so you know)

Also, check this out for more info.

Community
  • 1
  • 1
Cole
  • 2,805
  • 9
  • 44
  • 61
  • 3
    +1 yep! For a quick reference,**in eclipse** you can also expand the android version referenced in the package explorer and goto `android.jar> res >drawable-` and you'll see the file names but you can't open them up. – gideon Jun 11 '12 at 04:54