Created
July 7, 2014 09:17
-
-
Save Ekt0s/4bac53797d51f561cee3 to your computer and use it in GitHub Desktop.
Little tricks to handle rotation on tablets and handset
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Folder values/layouts.xml --> | |
<!-- BEGIN_INCLUDE(all) --> | |
<resources> | |
<item name="main_layout" type="layout">@layout/onepane_with_bar</item> | |
<bool name="has_two_panes">false</bool> | |
</resources> | |
<!-- END_INCLUDE(all) --> | |
<!-- Folder: values-sw600dp-land/layouts.xml --> | |
<!-- BEGIN_INCLUDE(all) --> | |
<resources> | |
<item name="main_layout" type="layout">@layout/twopanes</item> | |
<bool name="has_two_panes">true</bool> | |
</resources> | |
<!-- END_INCLUDE(all) --> | |
<!-- Folder: values-sw600dp-port/layouts.xml --> | |
<!-- BEGIN_INCLUDE(all) --> | |
<resources> | |
<item name="main_layout" type="layout">@layout/onepane</item> | |
<bool name="has_two_panes">false</bool> | |
</resources> | |
<!-- END_INCLUDE(all) --> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment