| android Programming Glossary: main_activity.xmlDesigning an android tablet-only app http://stackoverflow.com/questions/10540646/designing-an-android-tablet-only-app  2 different sets of layouts like this res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml.. # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml # For 10 tablets 720dp wide and bigger and completely omit to.. 
 Layout for tablets in Android http://stackoverflow.com/questions/4185507/layout-for-tablets-in-android  should create mutiple asset folders like this res layout main_activity.xml # For handsets smaller than 600dp available width res layout.. smaller than 600dp available width res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml.. # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml # For 10 tablets 720dp wide and bigger   share improve this.. 
 Android : App support for multiple tablet screen resolutions http://stackoverflow.com/questions/5633792/android-app-support-for-multiple-tablet-screen-resolutions  to this you can create folders like this res layout main_activity.xml # For handsets smaller than 600dp available width res layout.. smaller than 600dp available width res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml.. # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml # For 10 tablets 720dp wide and bigger this in combination with.. 
 How to declare the layout for 7'inch tablet Android? http://stackoverflow.com/questions/7763065/how-to-declare-the-layout-for-7inch-tablet-android  10 tablets you can also define smallest widths res layout main_activity.xml # For phones res layout sw600dp main_activity.xml # For 7 tablets.. layout main_activity.xml # For phones res layout sw600dp main_activity.xml # For 7 tablets res layout sw720dp main_activity.xml # For 10.. 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.. 
 Designing an android tablet-only app http://stackoverflow.com/questions/10540646/designing-an-android-tablet-only-app  large and xlarge screens. So I guess that I could build 2 different sets of layouts like this res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml # For 10 tablets 720dp wide and bigger and completely.. of layouts like this res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml # For 10 tablets 720dp wide and bigger and completely omit to specify a layout for smaller screens but then the app would.. 
 Layout for tablets in Android http://stackoverflow.com/questions/4185507/layout-for-tablets-in-android  but for the sake of it... According documentation you should create mutiple asset folders like this res layout main_activity.xml # For handsets smaller than 600dp available width res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger.. folders like this res layout main_activity.xml # For handsets smaller than 600dp available width res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml # For 10 tablets 720dp wide and bigger   share.. 
 Android : App support for multiple tablet screen resolutions http://stackoverflow.com/questions/5633792/android-app-support-for-multiple-tablet-screen-resolutions  in the Supporting Multiple Screens documentation. According to this you can create folders like this res layout main_activity.xml # For handsets smaller than 600dp available width res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger.. folders like this res layout main_activity.xml # For handsets smaller than 600dp available width res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml # For 10 tablets 720dp wide and bigger this in.. 600dp available width res layout sw600dp main_activity.xml # For 7 tablets 600dp wide and bigger res layout sw720dp main_activity.xml # For 10 tablets 720dp wide and bigger this in combination with the xhdpi folder should give more granularity. UPDATE i.. 
 How to declare the layout for 7'inch tablet Android? http://stackoverflow.com/questions/7763065/how-to-declare-the-layout-for-7inch-tablet-android  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.. 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.. 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 .  share improve this.. 
 |