Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

How do I change my app's icon?

like image 559
RSM Avatar asked Jul 31 '12 10:07

RSM


People also ask

How do I change the icon for an Android app?

Tap the menu button in the top left, and select My Stuff. At the top of the screen, tap the Icons option. Then tap the icon pack you wish to apply. At the bottom of the page, select the Apply option.

Can you build Android apps in Eclipse?

For developing the android application using eclipse IDE, you need to install the Eclipse. you can download it from this location download the Eclipse. Eclipse classic version is recommended but we are using the Eclipse IDE for JavaEE Developers.

Which Eclipse IDE is best for Android?

Eclipse Classic 3.6. 1. Eclipse IDE for Java EE Developers.


5 Answers

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!

like image 169
Rob R. Avatar answered Sep 23 '22 01:09

Rob R.


In your AndroidManifest.xml file

<application
        android:name="ApplicationClass"
        android:icon="@drawable/ic_launcher"  <--------
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
like image 37
MAC Avatar answered Sep 21 '22 01:09

MAC


Icon creation wizard

  • Select your project
  • Ctrl+n
  • Android Icon Set
like image 43
hanoo Avatar answered Sep 20 '22 01:09

hanoo


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.

like image 34
CENT1PEDE Avatar answered Sep 21 '22 01:09

CENT1PEDE


You can find an easy guide here

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

like image 38
mauropellizzer Avatar answered Sep 24 '22 01:09

mauropellizzer