Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find Android's default icons? [duplicate]

Tags:

android

icons

Possible Duplicate:
Standard Android menu icons, for example refresh

Where can I find the name of the default Android menu icons (like refresh or compose)?

The code below has an error stating that the resource is not public

<item     android:id="@+id/preference"     android:icon="@android:drawable/ic_menu_refresh"     android:showAsAction="ifRoom" /> 
like image 891
Blake Avatar asked Nov 01 '12 21:11

Blake


People also ask

Why do I have 2 icons for the same app Android?

Update/Reinstall App If you are noticing duplicate icons for a single app repeatedly, its possible that the error stems from the app itself, rather than somewhere else. At this point, you should update the app (if there is one), and check if that resolves the duplicate icon error in Android.

Where are Android icons stored?

Then after installing your app, the OS will pick the icon that matches your phone configuration and create a shortcut on your installed apps page. The icons reside inside the . apk of each individual app.

How can I duplicate an icon in Android?

Go to the drawer, choose the app you want to add, touch and hold it for a second or two, then drag it up to the dock.


2 Answers

\path-to-your-android-sdk-folder\platforms\android-xx\data\res 
like image 56
Tomislav Novoselec Avatar answered Sep 18 '22 18:09

Tomislav Novoselec


you can use

android.R.drawable.xxx 

(use autocomplete to see whats in there)

Or download the stuff from http://developer.android.com/design/downloads/index.html

like image 43
koljaTM Avatar answered Sep 20 '22 18:09

koljaTM