I want to distinguish layout/drawables for the following two devices:
1) 7" hdpi
2) 7" ldpi
So I am using the following qualified directories:
1) layout-sw600dp-hdpi / drawable-sw600dp-hdpi
2) layout-sw600dp-ldpi / drawable-sw600dp-ldpi
But when I run on a 7" ldpi device with screen size in pixels 480x764, then Android (V4.0.3) chooses the hdpi version. Why is that? When I read the documentation, ldpi should be the better fit.
When I remove layout-sw600dp-hdpi / drawable-sw600dp-hdpi completely, it does choose 2) and everything is fine. But I also need the hdpi version.
So how can I distinguish the ldpi/hpdi version of a 7" device?
Thank you!
Andrej