2019-10-15 16:27:06 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-22 15:40:12 +00:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/drawer_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
tools:openDrawer="start"
|
|
|
|
>
|
2019-10-15 16:27:06 +00:00
|
|
|
|
|
|
|
<include
|
|
|
|
layout="@layout/app_bar_main"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2020-04-22 18:33:14 +00:00
|
|
|
<com.mikepenz.materialdrawer.widget.MaterialDrawerSliderView
|
|
|
|
android:id="@+id/slider"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
android:fitsSystemWindows="false"
|
|
|
|
/>
|
2019-10-15 16:27:06 +00:00
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|