154

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

How do I change my app's icon?

nbro
  • 12,226
  • 19
  • 85
  • 163
RSM
  • 12,215
  • 34
  • 89
  • 138

6 Answers6

325

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!

ridoy
  • 6,010
  • 2
  • 26
  • 60
Rob R.
  • 3,639
  • 2
  • 12
  • 10
  • 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,363
  • 8
  • 51
  • 92
22

Icon creation wizard

  • Select your project
  • Ctrl+n
  • Android Icon Set
hanoo
  • 4,017
  • 2
  • 23
  • 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.

CENT1PEDE
  • 6,762
  • 8
  • 60
  • 110
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.