Hi
Suppose I have written a little program and designed a icon, how can I apply this icon to the program?
seems that I can’t find the solution at http://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To set an icon for the application, in your
AndroidManifest.xml, use theandroid:iconattribute in the<application>element – see the documentation for more.For example
<application android:icon="@drawable/app_icon.png" ... >.