How can I set an icon for my Android application?
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.
If you intend on your application being available on a large range of devices, you should place your application icon into the different
res/drawable...folders provided. In each of these folders, you should include a 48dp sized icon:drawable-ldpi(120 dpi, Low density screen) – 36px x 36pxdrawable-mdpi(160 dpi, Medium density screen) – 48px x 48pxdrawable-hdpi(240 dpi, High density screen) – 72px x 72pxdrawable-xhdpi(320 dpi, Extra-high density screen) – 96px x 96pxdrawable-xxhdpi(480 dpi, Extra-extra-high density screen) – 144px x 144pxdrawable-xxxhdpi(640 dpi, Extra-extra-extra-high density screen) – 192px x 192pxYou may then define the icon in your
AndroidManifest.xmlfile as such: