Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I refer to the documentation at http://developer.android.com/guide/practices/ui_guidelines/icon_design.html#icon-sets

Hence, I plan to have the following directory structures.

res/
    drawable/   
        icon.png (? x ? px)
    drawable-ldpi/  
        icon.png (36x36 px)
    drawable-mdpi/  
        icon.png (48x48 px)
    drawable-hdpi/  
        icon.png (72x72 px)

However, I cannot find any documentation, to mention the size of default launcher icon size.

May I know what should be the default launcher icon size?

share|improve this question

4 Answers

up vote 11 down vote accepted

I don't think you need to supply an image in the drawable/ directory if you have populated drawable-ldpi/ drawable-mdpi/ and drawable-hdpi/ with launcher icons.

share|improve this answer
Any document reference on your statement? – Cheok Yan Cheng Apr 8 '11 at 0:40
@Yan Cheng CHEOK I've not seen a document that states it explicitly, but all the docs I've read either talk about populating drawable/ or drawable-ldpi/, drawable-mdpi/ and drawable-hdpi/, not both. In my own app I don't have the base drawable/ directory and have not found any issues with launcher icon scaling on various devices. – dave.c Apr 8 '11 at 11:56
4  
Plain "drawable" resources are necessary for Android 1.5, API 3 devices. The drawable-DENSITYdpi directories were introduced with Android 1.6. – Thane Anthem May 5 '11 at 10:50

Maybe the following link will help you

http://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html#size5

According to Icon Design launcher:

Launcher icon dimensions for high-density (hdpi) screens:

Full Asset: 72 x 72 px

Icon: 60 x 60 px

Square Icon: 56 x 56 px

Launcher icon dimensions for medium-density (mdpi) screens:

Full Asset: 48 x 48 px

Icon: 40 x 40 px

Square Icon: 38 x 38 px

Launcher icon dimensions for low-density (ldpi) screens:

Full Asset: 36 x 36 px

Icon: 30 x 30 px

Square Icon: 28 x 28 px

share|improve this answer
Ya. I know that. But what should be "default"? – Cheok Yan Cheng Apr 7 '11 at 15:29

The Android icon guidelines say that the baseline should be assumed to be mdpi, so if you're using the default drawable directory, images should be designed according to those guidelines (48x48 for launcher icons). According to the documentation:

The system assumes that default resources are designed for the baseline screen size and density, which is a normal screen size and a medium density. (from http://developer.android.com/guide/practices/screens_support.html)

There's a bit of information there regarding when images from the default drawable directory are used too, but nothing specific.

share|improve this answer

According to http://developer.android.com/design/style/iconography.html, the default launcher icon size should be 48 x 48 pixels.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.