Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maximum dp/dip on android devices

Since dip stands for "device independent pixels", is there a standard number of dip for every android device out there?

Example: if a hdpi device has X dp/width and Y dp/height, does a ldpi device have the same values? Namely X and Y?

If so, can anyone tell me the exact numbers?

Thanks in advance.

like image 388
kimv Avatar asked Aug 21 '14 13:08

kimv


1 Answers

No, but this is how you roughly maps actual sizes and densities to generalized sizes and densities.

a busy cat

  • 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
like image 127
Mohsin Avatar answered Oct 29 '22 15:10

Mohsin