2018-02-16 14:45:52 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-10-04 14:59:08 +02:00
|
|
|
<com.google.android.material.navigation.NavigationView android:id="@+id/navigation_layout"
|
2018-02-16 14:45:52 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-02-16 23:56:04 +01:00
|
|
|
android:clickable="true"
|
2018-06-13 22:35:20 +02:00
|
|
|
android:focusable="true"
|
|
|
|
>
|
2018-02-16 14:45:52 +01:00
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
<com.google.android.material.navigation.NavigationView
|
2018-02-16 14:45:52 +01:00
|
|
|
android:id="@+id/navigation"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-06-13 22:35:20 +02:00
|
|
|
app:elevation="0dp"
|
|
|
|
android:background="?attr/android:windowBackground"
|
2019-03-10 01:02:25 +05:30
|
|
|
app:headerLayout="@layout/drawer_header"
|
|
|
|
android:theme="@style/NavViewTextStyle"/>
|
2018-03-30 18:41:11 +02:00
|
|
|
<!-- app:menu="@menu/drawer_items" -->
|
2018-02-16 14:45:52 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/navigation_drawer_footer"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_alignLeft="@id/navigation"
|
|
|
|
android:layout_alignRight="@id/navigation"
|
|
|
|
android:layout_alignStart="@id/navigation"
|
|
|
|
android:layout_alignEnd="@id/navigation"
|
|
|
|
|
|
|
|
android:layout_alignParentBottom="true">
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
</com.google.android.material.navigation.NavigationView>
|