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 developing an APP using Eclipse IDE Juno and Android SDK. How do I change my apps icon?

share|improve this question

3 Answers

up vote 15 down vote accepted

In your AndroidManifest.xml file

<application
        android:name="ApplicationClass"
        android:icon="@drawable/ic_launcher"  <--------
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
share|improve this answer

Go into your AndroidManifest.xml file
Click on the Application Tab
Find the Text Box Labelled "Icon", then click the "Browse" button at the end of the text box
Click the Button Labelled: "Create New Icon..."


Create your icon
Click Finish
Click "Yes to All" if you already have the icon set to something else

Enjoy using a gui rather then messing with an image editor!


Hope this helps!

share|improve this answer
excellent. it will create appropriate sizes too. – Sandeep Mar 6 at 1:21

You can find an easy guide here

The step are 2: - Copy the icon in the correct folder/folders - Change the AndroidManifest.xml

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.