android - How to change default picture application to my own picture? -


when run application, it's automatically create droid-bot picture on surface of application. so, want change picture, should do?

(1) create png image (say icon.png) , save in folder:

res/drawable  

(2) then, in androidmanifest.xml of application add icon tag in application:

android:icon=”@drawable/icon” 

e.g.

<application android:name ="yourappmgr" android:icon="@drawable/icon"                  //... > 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -