blob: 037aa3f33db4065b969b0b4ecf3aa1f1ece92e2b [file] [log] [blame]
Ivan Yeo215fc2a2015-03-17 22:35:04 -07001<?xml version="1.0" encoding="utf-8"?>
Alexander Afanasyev471bbff2019-03-09 11:35:04 -08002<androidx.drawerlayout.widget.DrawerLayout
Ivan Yeo215fc2a2015-03-17 22:35:04 -07003 xmlns:android="http://schemas.android.com/apk/res/android"
4 xmlns:tools="http://schemas.android.com/tools"
5 android:id="@+id/drawer_layout"
6 android:layout_width="match_parent"
7 android:layout_height="match_parent"
8 tools:context=".MainActivity">
9
10 <!-- Main container for fragments to be presented in -->
11 <FrameLayout
12 android:id="@+id/main_fragment_container"
13 android:layout_width="match_parent"
14 android:layout_height="match_parent"
15 />
16
17 <!-- DrawerFragment for user navigation -->
18 <FrameLayout
19 android:id="@+id/navigation_drawer"
20 android:layout_width="@dimen/drawer_width"
21 android:layout_height="match_parent"
22 android:layout_gravity="start"
23 tools:layout="@layout/activity_main_drawer_listview"
24 />
25
Alexander Afanasyev471bbff2019-03-09 11:35:04 -080026</androidx.drawerlayout.widget.DrawerLayout>