aboutsummaryrefslogtreecommitdiff
path: root/src/main/res/layout/main_ui.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/res/layout/main_ui.xml')
-rw-r--r--src/main/res/layout/main_ui.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/res/layout/main_ui.xml b/src/main/res/layout/main_ui.xml
new file mode 100644
index 000000000..52b60a9b0
--- /dev/null
+++ b/src/main/res/layout/main_ui.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<android.support.v4.widget.DrawerLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/main_root_layout"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="#EEE">
+
+ <FrameLayout
+ android:id="@+id/main_ui_content"
+ android:layout_height="match_parent"
+ android:layout_width="match_parent"
+ android:paddingRight="@dimen/global_content_padding_side"
+ android:paddingLeft="@dimen/global_content_padding_side"
+ android:clipToPadding="false">
+ </FrameLayout>
+
+ <FrameLayout
+ android:orientation="vertical"
+ android:layout_width="@dimen/drawer_width"
+ android:layout_height="match_parent"
+ android:layout_gravity="left">
+ <include layout="@layout/side_menu_layout"/>
+ </FrameLayout>
+</android.support.v4.widget.DrawerLayout> \ No newline at end of file