Furkan Gözükara
Furkan Gözükara

Reputation: 23810

What are the screen resolution sizes for android sizes

ldpi    
mdpi    
hdpi    
xhdpi   
xxhdpi  
xxxhdpi

Ok my question is about setting resolution size of background image

Lets what are the sizes for land mode ?

for example : xxhdpi : 1920x1080 is this correct ? and the rest goes how ?

thank you very much

Upvotes: 0

Views: 54

Answers (2)

joao2fast4u
joao2fast4u

Reputation: 6892

There is not a linear relation between screen density and screen size. There are multiple screen dimension configurations for each screen density value.

For example, you can have two hdpi devices, one being 569x320px and another 800x400px.

Your density factor represents how many pixels are needed to make one dpi or dip (density independent pixel).

So, for example, hdpi has a 1.5 density factor, meaning that each dpi is made of 1.5 pixels.

As for xhdpi, it has a 2.0 factor, this is, 1 dpi = 2px.

See more at this link and also this one

Upvotes: 1

Fahim
Fahim

Reputation: 12358

You can find all the android devices screen resolution sizes with additional details in both landscape and portrait mode

as

  1. dpi of the device
  2. Title bar height
  3. Status Bar height
  4. Content View

Refer ScreenDeviceStatistics.

Upvotes: 1

Related Questions