Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why Nexus 6 density is 560 dpi?

How to prepare resources for Nexus 6? If I put images to xxxhdpi they will scale down and lose quality. I put images to xxhdpi they will scale up and lose quality. Why developers decided setup value 560dpi for density, if real density 493ppi is more closer to xxhdpi ~480dpi?

The Nexus 6 boasts an impressive 5.96” Quad HD screen display at a resolution of 2560 x 1440 (493 ppi). This translates to ~ 730 x 410 dp (density independent pixels).

Nexus 6 has a quantized density of 560 dpi, which falls in between the xxhdpi and xxxhdpi primary density buckets.

For the Nexus 6, the platform will scale down xxxhdpi assets, but if those aren’t available, then it will scale up xxhdpi assets.

xxhdpi ~480dpi
xxxhdpi ~640dpi
like image 445
anber Avatar asked Feb 12 '15 12:02

anber


3 Answers

In the case of the Nexus 6, the manufacturer chose a quantized density of 560 (adb shell getprop ro.sf.lcd_density), even though the physical density is about 493 (getResources().getDisplayMetrics().toString()). Understanding why they might do this requires understanding the meaning of the quantized density and how it affects image resource rendering, which is explained here.

In short, the quantized density of 560 means that the scale factor employed to load/render images will be 3.5. In the words of D. Hackborn, 'The density ... is an abstract density bucket the device manufacturer has decided makes sense for their UI to run in. This is what is used to evaluate things like "dp" units and select and scale bitmaps from resources.'

like image 185
Jo Jo Avatar answered Oct 18 '22 06:10

Jo Jo


You can use drawable-560dpi for 560 dpi. drawable-560dpi and drawable-xxxhdpi images are in same resolution.

like image 7
Ramesh Bhati Avatar answered Oct 18 '22 07:10

Ramesh Bhati


I think it's a valid question. Some devices are between supported dpis( xxhdpi & xxxhdpi), using images will do unnecessary software scaling . I don't bother about the quality difference but it will affect the startup performance of the application. Check variable willscale in BitmapFatory , if this is true the platform will do unnecessary extra software scaling. Ideally hardware ui should scale this directly using openGL ES.

like image 2
Prashant Sharma Avatar answered Oct 18 '22 07:10

Prashant Sharma