In the web android market, when I search my application I see my personal icon, but when I search my application from my phone my application has the default icon. I would like that icon to be my launch icon. What could I do?
Share
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.
The launch icon and label is defined in the manifest in this line:
You must put the launch icon in the res/drawable directory (preferably different resolutions under the different resolution directories). So in the above example you must have an icon.png file in res/drawable, or an icon.png in each of res/drawable-hdpi, res/drawable-mdpi, res/drawable-ldpi. See http://developer.android.com/guide/practices/ui_guidelines/icon_design.html for the icon design guidelines.