skip to Main Content

I am trying to get information about the notification icon sizes to create them for my app but I am a little bit lost. I have read a few posts that basically says this:

For MDPI 24 px
For HDPI 36 px
For XHDPI 48 px
For XXHDPI 72 px
For XXXHDPI 96 px

I am trying to create my icons using Photoshop but I don’t know the resolution. Can anyone tell what resolution I have to use?

Here you have a Photoshop, create New dialog:

enter image description here

4

Answers


  1. you are right here..
    Notification icons have the same size you had posted here…
    like

    MDPI - 24 x 24  (drawable-mdpi)
    HDPI - 36 x 36  (drawable-hdpi)
    XHDPI - 48 x 48  (drawable-xhdpi)
    XXHDPI - 72 x 72  (drawable-xxhdpi)
    XXXHDPI - 96 x 96  (drawable-xxxhdpi)
    

    For more detailed.. Here Graphics Designer Cheat Sheet Have a look

    Login or Signup to reply.
  2. The correct resolutions have been posted already, but I want to point out that notification icons are unecessary for xxxhdpi devices. As per the official Android documentation:

    You should not use the xxxhdpi qualifier for UI elements other than the launcher icon.

    Login or Signup to reply.
  3. In case of the notification’s large icon, the size is 64dp. So, the dimensions in pixels per density are:

    MDPI: 64px
    HDPI: 96px
    XHDPI: 128px
    XXHDPI: 192px
    XXXHDPI: 256px

    Login or Signup to reply.
  4. You can also use this place to generate app or notification icons.
    Here’s a link!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search