Another way to get the density loaded by the device:
Create values
folders for each density
Add a string resource in their respective strings.xml
:
<string name="screen_density">MDPI</string> <!-- ..\res\values\strings.xml -->
<string name="screen_density">HDPI</string> <!-- ..\res\values-hdpi\strings.xml -->
<string name="screen_density">XHDPI</string> <!-- ..\res\values-xhdpi\strings.xml -->
<string name="screen_density">XXHDPI</string> <!-- ..\res\values-xxhdpi\strings.xml -->
<string name="screen_density">XXXHDPI</string> <!-- ..\res\values-xxxhdpi\strings.xml -->
Then simply get the string resource, and you have your density:
String screenDensity = getResources().getString(R.string.screen_density);
If the density is larger than XXXHDPI
, it will default to XXXHDPI
or if it is lower than HDPI
it will default to MDPI
I left out LDPI
, because for my use case it isn't necessary.