2021-03-04 21:18:38 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-03-10 21:13:55 +01:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-04 21:18:38 +01:00
|
|
|
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">
|
|
|
|
|
|
|
|
<include
|
|
|
|
layout="@layout/app_bar_main"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
<com.google.android.material.navigation.NavigationView
|
|
|
|
android:id="@+id/nav_view"
|
|
|
|
android:layout_width="wrap_content"
|
2021-04-16 21:41:45 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-03-04 21:18:38 +01:00
|
|
|
android:layout_gravity="start"
|
|
|
|
android:background="@drawable/background"
|
|
|
|
android:fitsSystemWindows="true"
|
2021-05-21 22:02:20 +02:00
|
|
|
android:scaleType="centerCrop"
|
2021-03-04 21:18:38 +01:00
|
|
|
app:headerLayout="@layout/nav_header_main"
|
|
|
|
app:itemIconTint="@color/white"
|
|
|
|
app:itemTextColor="#FFFFFF"
|
|
|
|
app:menu="@menu/activity_main_drawer" />
|
2021-03-10 21:13:55 +01:00
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|
|
|
|
|