Dani Garcia
Dani Garcia

Reputation: 504

Relationship between mobile densities?

What are the relationship between mobile densities? I know that

ldpi: 0.75 mdpi: 1.0 (base density) hdpi: 1.5 xhdpi: 2.0 xxhdpi: 3.0 xxxhdpi: 4.0 large: ? xlarge: ?

What are the relationships for large and xlarge?

Upvotes: 0

Views: 77

Answers (2)

Emanuel Moecklin
Emanuel Moecklin

Reputation: 28856

Large, xlarge etc. aren't density but screen size qualifiers. There's no clear definition for small, normal, large and xlarge screen sizes (unlike for densities). Check out this table:

enter image description here

http://developer.android.com/guide/practices/screens_support.html#testing

Upvotes: 0

cw fei
cw fei

Reputation: 1564

  • ldpi = 1:0.75
  • mdpi = 1:1
  • hdpi = 1:1.5
  • xhdpi = 1:2
  • xxhdpi = 1:3
  • xxxhdpi = 1:4

Upvotes: 0

Related Questions