Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XXHDPI and XXXHDPI dimensions in dp for images and icons in android

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.

like image 468
Abhishek Deshpande Avatar asked Nov 10 '22 20:11

Abhishek Deshpande


1 Answers

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?

like image 120
M S Gadag Avatar answered Nov 14 '22 21:11

M S Gadag