aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/abstract_fullscreen_activity.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/abstract_fullscreen_activity.xml')
-rw-r--r--app/src/main/res/layout/abstract_fullscreen_activity.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/src/main/res/layout/abstract_fullscreen_activity.xml b/app/src/main/res/layout/abstract_fullscreen_activity.xml
new file mode 100644
index 00000000..7ca9b936
--- /dev/null
+++ b/app/src/main/res/layout/abstract_fullscreen_activity.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<android.support.v4.widget.DrawerLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:id="@+id/drawer_layout"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <!-- The main content view -->
+ <FrameLayout
+ android:id="@+id/content_frame"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"/>
+
+ <!-- The navigation drawer -->
+ <android.support.design.widget.NavigationView
+ android:id="@+id/left_drawer"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_gravity="start"/>
+</android.support.v4.widget.DrawerLayout>