Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the best size to use for an Android application icon

Tags:

android

What is the best size to use for an Android application icon? Is it 72*72?

I want to install my application on a high resolution screen (hdpi).

enter image description here

Thanks

like image 327
Hassan Mokdad Avatar asked Jun 30 '11 16:06

Hassan Mokdad


People also ask

What is the ideal icon size?

Icon incrementsIcons work best at the power of 8. So always try and make your icon sizes divisible by 8 — this depends on what grid you're using, if you're using a 10x10 grid then make icons divisible by 10. For best results keep icon sizes consistent with your font sizes.


2 Answers

You can also take a look here Android Asset Studio. It automatically creates icons for Android apps based on your needs.

like image 157
nhaarman Avatar answered Oct 27 '22 06:10

nhaarman


To create an icon for different densities, you should follow the 2:3:4:6 scaling ratio between the four primary densities (medium, high, x-high, and xx-high, respectively).

For example, consider that the size for a launcher icon is specified to be 48x48 dp.

This means the baseline (MDPI) asset is 48x48 px,

and the high density (HDPI) asset should be 1.5x the baseline at 72x72 px,

and the x-high density (XHDPI) asset should be 2x the baseline at 96x96 px, and so on.

Note: Android also supports low-density (LDPI) screens with asset size 36x36 px, but you normally don't need to create custom assets at this size because Android effectively down-scales your HDPI assets by 1/2 to match the expected size.

Similarly for XXHDPI asset size should be 144x144 px.

Source: developer.android.com

like image 20
Kapil Jituri Avatar answered Oct 27 '22 08:10

Kapil Jituri