I was trying out different resource qualifiers in my application and wanted to confirm few things :
Suppose I have few dimension files as follows :
dimens.xml (hdpi)
dimen.xml (sw320dp)
In this case if the phone is hdpi and also the screen has a minimum width of 320dp, which resource file does android pick ?
In the few phones that I have tested, it seems to always pick the sw320dp file which leads me to believe that qualifiers such as "hdpi" and "swdp" should not be mixed.
Is this correct ?