I am developing application on both 10\'inch&7\'inch tablets, here is my problem for 10\'inch tablet i have declared layout as(layout-xlarge-land & layout-xlarge-por
In the rare case where you want to further customize your UI, For example for 7” vs. 10” tablets, you can also define smallest widths:
res/layout/main_activity.xml # For phones
res/layout-sw600dp/main_activity.xml # For 7” tablets
res/layout-sw720dp/main_activity.xml # For 10” tablets
and just check out this for 7” vs. 10” tablets:--
New Tools For Managing Screen Sizes.
Android: Tools For Managing Screen Sizes
Kindle Fire: Screen Layout and Resolution
phones :
layout
7” tablets :
layout-sw600dp
10” tablets :
layout-sw720dp
kindle fire 7" :
layout-large-mdpi
kindle fire 7" HD :
layout-large-hdpi
you can also specify your layout
folder like this
As per new approach discussed here, New Tools For Managing Screen Sizes
we can specify like this
but if you are building for amazon devices
layout-large-mdpi
layout-large-hdpi
along with other android devices 7" which use layout-sw600dp
It's because your using a "cheap" (inexpensive) 7-inch tablet 480x800, so it will use sw360 up to 430dp.