I change from Eclipse to Android Studio. I'm facing a problem with the densities of the Emulators. For example, in Eclipse the Samsung S4 was density xxhdpi but in Android Studio is xhdpi. Samsung S4: 4,99' - 1080 x 1920.
This is my code:
Float density = getResources().getDisplayMetrics().density;
if(density >= 1.0 && density < 1.5){ //mdpi
...
} else if(density >= 1.5 && density < 2.0){ //hdpi
...
} else if(density >= 2.0 && density < 3.0){ //xhdpi
...
} else if(density >= 3.0 && density < 4.0){ //xxhdpi
...
} else if(density >= 4.0){ //xxxhdpi
...
}
Value of density is 2.625. So enters in the xhdpi case, but I need to enter in the xxhdpi! What is the problem? Is there a better way to do this?.
Thanks
Put this code in your manifest.xml
Hope it will help you.