How does Android choose different resource under different environment settings, for example, different language settings, different screen orientations, different screen sizes, and so on.
Generally, we will add qualifiers after those resource folder, if we add two or more qualifiers, we will add in the following order
Table 15.1 characteristics with configuration qualifiers
Mobilecountrycode (MCC), Optionallyfollowedbymobilenetworkcode (MNC)
Language code, optionally followed by region code
Layout direction
Smallest width
Availablewidth
Availableheight
ScreenSize
Screenaspect
Screenorientation
UI mode
Night mode
Screen Density (dpi)
Touchscreen type
Keyboard availability
Primary text input
Navigation Key Availability
Primary Non-text Navigation method
API level
You can find descriptions of these characteristics and examples of specific configuration qualifiers at HTTP://DEVELOPER.A Ndroid.com/guide/topics/resources/providing-resources.html#alternativeresources.
Similarly, after removing the resource, the Android system qualifier in the order to find the most suitable resource to use.
You can see a complete list of supported (unqualified) Res subdirectories at Http://developer.android.com/guide/topics/res Ources/providing-resources.html#resourcetypes.
From Bignerranchguide
How does Android choose different resource under different environment settings?