How to change the icon of an Android app in Eclipse?
Asked Answered
M

6

154

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

How do I change my app's icon?

Mccreery answered 31/7, 2012 at 10:19 Comment(0)
C
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!

Cp answered 29/11, 2012 at 16:23 Comment(2)
Worth mentioning that you need to open the AndroidManifest.xml by Android Manifest Editor - by right click on the file in Package Explorer.Asphalt
Note: Have to do a clean before you build after changing the icon.Porcine
S
43

In your AndroidManifest.xml file

<application
        android:name="ApplicationClass"
        android:icon="@drawable/ic_launcher"  <--------
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
Shortly answered 31/7, 2012 at 10:21 Comment(0)
P
22

Icon creation wizard

  • Select your project
  • Ctrl+n
  • Android Icon Set
Parthenogenesis answered 25/10, 2013 at 21:52 Comment(1)
Or... right-click project->New->Other->Android Icon Set. For macintosh computers, the shortcut is command+n.Hadhramaut
K
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.

Knowitall answered 23/10, 2013 at 8:46 Comment(0)
P
4

You can find an easy guide here

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

Progression answered 31/7, 2012 at 10:24 Comment(0)
L
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.

Limerick answered 25/8, 2014 at 5:10 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.