Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: Are there xxxhdpi density devices?

Tags:

android

Are there xxxhdpi density devices?

Android devices screen density increases (see https://github.com/paulvi/displayclasses) and there are already devices with density higher than xxhdpi (extra-extra-high) ~480dpi

like Samsung Galaxy S6 577 2560 1440

(But I cannot check if it is really xxxhdpi)

Is it time to prepare 192x192 icons?
(4x times 48x48 dp, see http://developer.android.com/design/style/iconography.html )

See also Android Official Icons for XXHDPI and XXXHDPI

UPDATE: Was asked a year before as Android xxx-hdpi real devices

Also Nexus 6 and Nexus 9 Screen density

like image 554
Paul Verest Avatar asked Mar 11 '15 08:03

Paul Verest


People also ask

Are the screen densities in Android?

Android categorizes mobile screen density into one of six families: LDPI (low): ~120dpi. MDPI (medium): ~160dpi. HDPI (high): ~240dpi.

What are the four different densities followed by Android?

The configuration qualifiers you can use for density-specific resources are ldpi (low), mdpi (medium), hdpi (high), and xhdpi (extra high).

How can I get density in Android?

You can get info on the display from the DisplayMetrics struct: DisplayMetrics metrics = getResources(). getDisplayMetrics(); Though Android doesn't use a direct pixel mapping, it uses a handful of quantized Density Independent Pixel values then scales to the actual screen size.


1 Answers

Just for reference purpose, now Google maintain a list of devices density and other information at https://design.google.com/devices/ which is mainly targeted for material design guideline.

like image 73
Mr. Oronno Avatar answered Sep 21 '22 11:09

Mr. Oronno