2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-04 21:04:26 +05:30
|
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-11-30 06:36:16 +05:30
|
|
|
android:id="@+id/drawerLayout"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-12-04 21:04:26 +05:30
|
|
|
android:layout_height="match_parent">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<FrameLayout
|
2018-07-27 18:37:33 +05:30
|
|
|
android:id="@+id/drawer_content_container"
|
|
|
|
android:layout_width="match_parent"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:layout_height="match_parent" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-12-04 21:04:26 +05:30
|
|
|
<com.google.android.material.navigation.NavigationView
|
|
|
|
android:id="@+id/navigationView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:paddingStart="0dp"
|
|
|
|
android:paddingEnd="8dp"
|
|
|
|
app:itemBackground="@drawable/navigation_item"
|
|
|
|
app:itemTextAppearance="@style/NavigationViewTitleTextAppearance"
|
|
|
|
app:menu="@menu/menu_drawer" />
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|