In my android app, I have set the layout resources for both large and x-large screens, viz:
layout-large and layout-xlarge. When I open run it in an device emulator with “large” screen, it gets the layout from the “layout-large” folder, which seems to be correct. But when I use a device with x-large screen size, it still uses the “layout-large” resources.
The x-large device I used is a 10″, 1280×800, 240dp emulator. Any idea?
I’ve included the following in the manifest:
<supports-screens
android:anyDensity="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:resizeable="true" />
below link will help you to understand about how android picks up layout files on various devices
http://developer.android.com/guide/practices/screens_support.html