4

I have been able to get dimensions for the following :

A set of six generalized densities:

  • ldpi (low) ~120dpi
  • mdpi (medium) ~160dpi
  • hdpi (high) ~240dpi
  • xhdpi (extra-high) ~320dpi
  • xxhdpi (extra-extra-high) ~480dpi
  • xxxhdpi (extra-extra-extra-high) ~640dpi

These are the dimensions :

  • 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

But what should be the ideal dimensions for images and icon sizes with device like XXLarge and XXXlarge screens.

Stephane Mathis
  • 6,542
  • 6
  • 43
  • 69
Abhishek Deshpande
  • 294
  • 2
  • 3
  • 8
  • possible duplicate of [about android image size and assets sizes](http://stackoverflow.com/questions/11581649/about-android-image-size-and-assets-sizes) – DroidDev Jan 08 '15 at 06:14
  • 1
    Expecting answer in dp for XXLarge and XXXLarge screens like the others mentioned above – Abhishek Deshpande Jan 08 '15 at 06:22
  • xxhdpi 1920×1200 px - Nexus 7 tablet - 7 inches Sony Z3 Tablet Compact LG G Pad 8.3 - 8.3 inches Sony Xperia Z2 Tablet - 10.1 inches – Myth Nov 23 '16 at 10:27
  • xxxhdpi 2560×1600 px - Nexus 10 tablet - 10.1 inches ~Google Nexus 9 Sony Xperia Z4 tablet Samsung Galaxy Note Pro 12.2 Samsung Galaxy Note 10.1 Samsung Galaxy Tab S 10.5 Dell Venue 8 7840 – Myth Nov 23 '16 at 10:27

3 Answers3

1

try like this. hope it works

drawable-sw720dp-xxhdpi and values-sw720dp-xxhdpi

drawable-sw720dp-xxxhdpi and values-sw720dp-xxxhdpi

link might destroy so pasted ans

reference Android xxx-hdpi real devices

xxxhdpi was only introduced because of the way that launcher icons are scaled on the nexus 5's launcher Because the nexus 5's default launcher uses bigger icons, xxxhdpi was introduced so that icons would still look good on the nexus 5's launcher.

also check these links

Different resolution support android

Application Skeleton to support multiple screen

Is there a list of screen resolutions for all Android based phones and tablets?

Community
  • 1
  • 1
M S Gadag
  • 2,057
  • 1
  • 12
  • 15
  • check this http://stackoverflow.com/questions/21452353/android-xxx-hdpi-real-devices check editted ans.. – M S Gadag Jan 08 '15 at 06:41
  • Android docs on that you don't need xxxhdpi size: https://developer.android.com/guide/practices/screens_support.html#xxxhdpi-note – Mac_Cain13 Jun 19 '15 at 09:52
0

it is different for different icons.(eg, diff sizes for action bar icons, laucnher icons, etc.) please follow this link icons handbook to learn more.

inkedTechie
  • 684
  • 5
  • 13
0

You can use a vector. Instead of worry about different screen sizes you only need to create an .svg file and import it to your project using Vector Asset Studio.

Alberto Alegria
  • 1,023
  • 10
  • 26