blob: 037aa3f33db4065b969b0b4ecf3aa1f1ece92e2b [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<!-- Main container for fragments to be presented in -->
<FrameLayout
android:id="@+id/main_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<!-- DrawerFragment for user navigation -->
<FrameLayout
android:id="@+id/navigation_drawer"
android:layout_width="@dimen/drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
tools:layout="@layout/activity_main_drawer_listview"
/>
</androidx.drawerlayout.widget.DrawerLayout>