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
Post a Comment