My sample app has these res folders:
drawable-hdpi
drawable-ldpi
drawable-mdpi
drawable-xhdpi
drawable-xxhdpi
In each folder, I have a display.png which shows which folder is from.
I tested my app on my mi max phone which has a density of 440dpi and a resolution of 1920px-by-1080px, but Android always picks the image from the drawable-mdpi
folder.
My phone density should be xhdpi
, right?
Why is Android picking the image from the mdpi
bucket, then?
Create an sample application with below code to check whether it's which density device.
code will return below values based on your devices density .
I have query, how you came to know the device taking image from mdpi folder ?