1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2017 The Android Open Source Project
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~      http://www.apache.org/licenses/LICENSE-2.0
8  ~ Unless required by applicable law or agreed to in writing, software
9  ~ distributed under the License is distributed on an "AS IS" BASIS,
10  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11  ~ See the License for the specific language governing permissions and
12  ~ limitations under the License.
13  -->
14<androidx.drawerlayout.widget.DrawerLayout
15    xmlns:android="http://schemas.android.com/apk/res/android"
16    xmlns:app="http://schemas.android.com/apk/res-auto"
17    xmlns:tools="http://schemas.android.com/tools"
18    android:id="@+id/drawer_layout"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent">
21    <LinearLayout
22        android:layout_width="match_parent"
23        android:layout_height="match_parent"
24        android:orientation="vertical">
25        <androidx.appcompat.widget.Toolbar
26            android:id="@+id/toolbar"
27            android:layout_width="match_parent"
28            android:layout_height="wrap_content"
29            android:background="@color/colorPrimary"
30            android:theme="@style/ThemeOverlay.AppCompat.Dark"
31            android:transitionName="toolbar"
32            tools:ignore="UnusedAttribute"/>
33        <androidx.fragment.app.FragmentContainerView
34            android:layout_width="match_parent"
35            android:layout_height="match_parent"
36            android:id="@+id/my_nav_host_fragment"
37            android:name="androidx.navigation.fragment.NavHostFragment"
38            app:navGraph="@navigation/nav_main"
39            app:defaultNavHost="true"
40        />
41    </LinearLayout>
42    <com.google.android.material.navigation.NavigationView
43        android:id="@+id/nav_view"
44        android:layout_width="wrap_content"
45        android:layout_height="match_parent"
46        android:layout_gravity="start"
47        app:menu="@menu/menu_nav_drawer"/>
48</androidx.drawerlayout.widget.DrawerLayout>
49