I would like to understand What is the scaling ratio for xxhdpi?
ldpi = 3
mdpi = 4
hdpi = 6
xhdpi = 8
xxhdpi = ?
It is actually 2:3:4:6 in the order mdpi, hdpi, xhdpi, xxhdpi. You can ignore the ldpi density category. Here is the Source of info.
mdpi is the normal, or default. Its scale factor is 1.0.
ldpi = 0.75
mdpi = 1.0
hdpi = 1.5
xhdpi = 2.0
xxhdpi = 3.0
xxxhdpi = 4.0
You can get the scale factor of your current screen programmatically, so: