1<?xml version="1.0" encoding="utf-8"?>
 2<layout xmlns:android="http://schemas.android.com/apk/res/android">
 3
 4    <androidx.drawerlayout.widget.DrawerLayout
 5        android:layout_width="match_parent"
 6        android:layout_height="match_parent"
 7        android:fitsSystemWindows="true">
 8
 9    <LinearLayout
10        android:layout_width="match_parent"
11        android:layout_height="match_parent"
12        android:orientation="vertical">
13
14        <com.google.android.material.appbar.AppBarLayout
15            android:layout_width="match_parent"
16            android:layout_height="wrap_content">
17
18            <com.google.android.material.appbar.MaterialToolbar
19                android:id="@+id/toolbar"
20                android:layout_width="match_parent"
21                android:layout_height="wrap_content"
22                android:minHeight="?attr/actionBarSize" />
23
24        </com.google.android.material.appbar.AppBarLayout>
25
26        <FrameLayout
27            android:id="@+id/main_fragment"
28            android:layout_width="match_parent"
29            android:layout_height="match_parent" />
30    </LinearLayout>
31
32    <com.mikepenz.materialdrawer.widget.MaterialDrawerSliderView
33        android:id="@+id/drawer"
34        android:layout_width="wrap_content"
35        android:layout_height="match_parent"
36        android:layout_gravity="start"
37        android:fitsSystemWindows="true" />
38
39    </androidx.drawerlayout.widget.DrawerLayout>
40</layout>