-4

Very New To Android. Can somebody show me how to put a icon for the app.. can somebody tell me the steps to do so..?

3 Answers3

1
  • Go to your AndroidManifest.xml file

  • Search for Application Tag.

  • add icon option like "android:icon="@drawable/icon" in it.

See the following image,

enter image description here

user2060383
  • 979
  • 1
  • 14
  • 32
0

Open the manifest.xml file of your application.

android:icon="@drawable/ic_launcher"

This line will be there in application branch for icon. Change the drawable resource id there to the id of drawable folder image you want to keep as icon of your application.

MysticMagicϡ
  • 28,593
  • 16
  • 73
  • 124
0

You can just replace the ic_launcher png in res folder with yours.

Tirolel
  • 928
  • 3
  • 17
  • 43