154

I am developing an app using Eclipse IDE Juno and Android SDK.

How do I change my app's icon?

nbro
  • 15,395
  • 32
  • 113
  • 196
RSM
  • 14,540
  • 34
  • 97
  • 144

6 Answers6

324

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!

starball
  • 20,030
  • 7
  • 43
  • 238
Rob R.
  • 3,629
  • 2
  • 14
  • 12
  • 9
    Worth mentioning that you need to open the `AndroidManifest.xml` by Android Manifest Editor - by right click on the file in Package Explorer. – Deqing Sep 24 '13 at 08:53
  • Note: Have to do a clean before you build after changing the icon. – Reaz Murshed Jan 19 '15 at 06:52
43

In your AndroidManifest.xml file

<application
        android:name="ApplicationClass"
        android:icon="@drawable/ic_launcher"  <--------
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
MAC
  • 15,799
  • 8
  • 54
  • 95
22

Icon creation wizard

  • Select your project
  • Ctrl+n
  • Android Icon Set
hanoo
  • 4,175
  • 2
  • 26
  • 19
  • 1
    Or... right-click project->New->Other->Android Icon Set. For macintosh computers, the shortcut is command+n. – SMBiggs May 27 '14 at 06:03
6

Look for this on your Manifest.xml android:icon="@drawable/ic_launcher" then change the ic_launcher to the name of your icon which is on your @drawable folder.

jofftiquez
  • 7,548
  • 10
  • 67
  • 121
4

You can find an easy guide here

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

2

Rob R.'s answer was definitely the way to go. I tried copying the ic_launcher.png files from another project and Eclipse still wouldn't read them. Going through the manifest is much quicker and easier.