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

I am new to android. How can I set an icon for my android application?

share|improve this question

7 Answers

up vote 90 down vote accepted

If you intend on your application being available on a large range of devices, you should place your application icon into the four different res/drawable... folders provided . In each of these folders, you should include the correct sized icon:

  • drawable-ldpi (120 dpi, Low density screen) - 36px x 36px
  • drawable-mdpi (160 dpi, Medium density screen) - 48px x 48px
  • drawable-hdpi (240 dpi, High density screen) - 72px x 72px
  • drawable-xhdpi (320 dpi, Extra-high density screen) - 96px x 96px

You then define the icon in your AndroidManifest.xml file as such:

<application android:icon="@drawable/icon_name" android:label="@string/app_name" >
.... 
</application> 
share|improve this answer
1  
The 4th one should be drawable-xhdpi I guess. – TomA Jun 24 '12 at 21:15
1  
Cheers, was a typo – Liam George Betsworth Jun 25 '12 at 18:00
BTW you can use Inkscape to generate png from SVG. With something like: inkscape %logo_file% -e %output_file% %WIDTH% %HEIGHT% --export-background-opacity=0.0 – Nux Nov 17 '12 at 13:02

put your image in drawable folder and set in manifest file... like as

 <application android:icon="@drawable/icon" android:label="@string/app_name" >
 .... 
 </application>  
share|improve this answer

place you image in drawable folder either of three and set like this

<application android:icon="@drawable/your_icon" >
.... 
</application>  
share|improve this answer

you can start by reading the documentation.

Here is a link:

http://developer.android.com/guide/topics/fundamentals/activities.html

share|improve this answer
1  
The other two answers are in the link provided. I provided a link because hopefully you will see the good documentation and begin to start there. The answer which tells you to use any of the three folders is right but also wrong. You should provide three different sizes for each of the screen densities. – trgraglia Mar 18 '11 at 13:20
developer.android.com/guide/practices/ui_guidelines/… is another helpful link that talks more about icons. – Louis Sayers Sep 11 '12 at 9:49

I found this link most useful.

  1. Upload a image.
  2. Download a zip.
  3. Extract into your project.

Done

http://android-ui-utils.googlecode.com/hg/asset-studio/dist/icons-launcher.html

share|improve this answer
  1. Choose icon picture copy this pic
  2. Paste it into your project's res/drawable folder
  3. Open manifest file and set

  4. Run program

share|improve this answer

Right click your project, go to New > Other > Android > Android Icon Set

Then follow the instructions on the Wizard

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.