skip to Main Content

How to set up my Photoshop for Android UI design ? I have several dimension e.g

  • 540 x 960
  • 960 x 540
  • 480 x 800
  • 800 x 480
  • 1024 x 600
  • 600 x 1024
  • 1024 x 800
  • 800 x 1024
  • 1280 x 800
  • 800 x 1280

So how could I set up Photoshop ? Or does i set up through mdpi, Ldpi, Hdpi?
What should be resolution for this dimension?

2

Answers


  1. To create alternative drawable bitmap for different densities, You Should follow the scaling ratio 3:4:6:8 Between the oven generalized densities. For example, if You Have a drawable bitmap that’s 48×48 pixels for medium-density screen (the size for a launcher icon), all the different sizes Should Be:

          36x36 for low-density (LDPI)
    
          48x48 for medium-density (MDPI)
    
          72x72 for high-density (HDPI)
    
          96x96 for extra high-density (XHDPI)
    
          144x144 for extra extra high-density (XXHDPI)
    

    This is for Splash screen image size

    • xlarge screens are at least 960dp x 720dp
    • large screens are at least 640dp x 480dp
    • normal screens are at least 470dp x 320dp
    • small screens are at least 426dp x 320dp

    More information on multiple screens here

    Login or Signup to reply.
  2. You can generate a Hi-res image and use a tool to get it for differents resolutions.

    Like this one:

    http://romannurik.github.io/AndroidAssetStudio/nine-patches.html

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