skip to Main Content

I am preparing graphics for my App.First I prepare graphics of xxhdpi resolution normal screen(samsung galaxy s4) using photoshop.
Now to support for other resolution i have converted using resolution ratio for ldpi,mdpi,hdpi and xhdpi.

ldpi | mdpi | tvdpi | hdpi | xhdpi | xxhdpi | xxxhdpi
0.75 | 1    | 1.33  | 1.5  | 2     | 3      | 4

My problem is new xhdpi graphics prepared is looking blur or distorted on Nexus 10 xhdpi device(also on small 2.7″ ldpi devices).How to create the graphics to support such multi-resolution and various screen size devices.

2

Answers


  1. Have you checked if the xhdpi image has the correct resolution?

    How have you generated the images for different screen densities?

    To support different screen densities ( if you don’t need 9patch ), create an image at the resolution that fits good for the maximum screen density that you want to support ( for ex. xxxhdpi ).
    Then use this image as input for a resizer tool that generates the corresponding images resized for all the different density screen that you need.

    I usually use this tool : https://github.com/redwarp/9-Patch-Resizer/releases

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