Skip to content

Instantly share code, notes, and snippets.

@Ekt0s
Created July 7, 2014 09:17
Show Gist options
  • Save Ekt0s/4bac53797d51f561cee3 to your computer and use it in GitHub Desktop.
Save Ekt0s/4bac53797d51f561cee3 to your computer and use it in GitHub Desktop.
Little tricks to handle rotation on tablets and handset
<!-- 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