2018-07-26 17:04:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-02-21 10:24:23 +01:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-26 17:04:44 +02:00
|
|
|
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">
|
|
|
|
|
|
|
|
<include
|
|
|
|
layout="@layout/app_bar_main"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2019-04-23 02:03:29 +02:00
|
|
|
<com.google.android.material.navigation.NavigationView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2019-10-03 14:31:55 +02:00
|
|
|
android:layout_gravity="start"
|
2020-04-18 05:34:43 +02:00
|
|
|
android:id="@+id/navigation_view_main_activity">
|
2019-04-23 02:03:29 +02:00
|
|
|
|
2020-02-19 02:59:12 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/nav_drawer_recycler_view_main_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:clipToPadding="false" />
|
|
|
|
|
2019-04-23 02:03:29 +02:00
|
|
|
</com.google.android.material.navigation.NavigationView>
|
2018-07-26 17:04:44 +02:00
|
|
|
|
2019-02-21 10:24:23 +01:00
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|