1 <?xml version="1.0" encoding="utf-8"?><!--
2 ~ Copyright © 2019 Damyan Ivanov.
3 ~ This file is part of MoLe.
4 ~ MoLe is free software: you can distribute it and/or modify it
5 ~ under the term of the GNU General Public License as published by
6 ~ the Free Software Foundation, either version 3 of the License, or
7 ~ (at your opinion), any later version.
9 ~ MoLe is distributed in the hope that it will be useful,
10 ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ~ GNU General Public License terms for details.
14 ~ You should have received a copy of the GNU General Public License
15 ~ along with MoLe. If not, see <https://www.gnu.org/licenses/>.
18 <com.google.android.material.navigation.NavigationView xmlns:android="http://schemas.android.com/apk/res/android"
19 xmlns:app="http://schemas.android.com/apk/res-auto"
20 xmlns:tools="http://schemas.android.com/tools"
21 android:id="@+id/nav_view"
22 android:layout_width="wrap_content"
23 android:layout_height="match_parent"
24 android:layout_gravity="start"
25 android:fitsSystemWindows="true"
26 android:theme="@style/ThemeOverlay.AppCompat.Light">
29 <androidx.constraintlayout.widget.ConstraintLayout
30 android:layout_width="match_parent"
31 android:layout_height="match_parent"
32 android:layout_marginBottom="0dp"
33 android:animateLayoutChanges="true"
34 android:orientation="vertical">
37 android:id="@+id/nav_fixed_items"
38 android:layout_width="match_parent"
39 android:layout_height="wrap_content"
40 android:divider="@drawable/list_divider"
41 android:elevation="2dp"
42 android:orientation="vertical"
43 android:showDividers="beginning"
44 android:visibility="gone"
45 app:layout_constraintBottom_toBottomOf="parent">
48 android:id="@+id/textView2"
49 style="@style/nav_button"
50 android:layout_weight="1"
51 android:drawableStart="@drawable/ic_settings_black_24dp"
52 android:text="@string/action_settings" />
57 android:layout_width="0dp"
58 android:layout_height="0dp"
59 app:layout_constraintBottom_toTopOf="@+id/nav_fixed_items"
60 app:layout_constraintEnd_toEndOf="parent"
61 app:layout_constraintLeft_toLeftOf="parent"
62 app:layout_constraintStart_toStartOf="parent"
63 app:layout_constraintTop_toTopOf="parent">
66 android:id="@+id/nav_upper"
67 android:layout_width="match_parent"
68 android:layout_height="wrap_content"
69 android:animateLayoutChanges="true"
70 android:divider="@drawable/list_divider_inside_out"
71 android:orientation="vertical"
72 android:showDividers="beginning"
73 app:layout_constraintBottom_toTopOf="@+id/nav_fixed_items"
74 app:layout_constraintTop_toBottomOf="@+id/nav_header">
76 <include layout="@layout/nav_header_layout" />
79 android:id="@+id/nav_actions"
80 android:layout_width="match_parent"
81 android:layout_height="match_parent"
82 android:orientation="vertical">
85 android:id="@+id/nav_account_summary"
86 style="@style/nav_button"
87 android:drawableStart="@drawable/ic_home_black_24dp"
88 android:onClick="onAccountSummaryClicked"
89 android:text="@string/account_summary_title" />
92 android:id="@+id/nav_latest_transactions"
93 style="@style/nav_button"
94 android:drawableStart="@drawable/ic_event_note_black_24dp"
95 android:onClick="onLatestTransactionsClicked"
96 android:text="@string/nav_transactions_title" />
99 android:id="@+id/textView5"
100 style="@style/nav_button"
101 android:drawableStart="@drawable/ic_assignment_black_24dp"
102 android:text="@string/nav_reports_title"
103 android:visibility="gone" />
106 android:id="@+id/nav_profile_list_head_layout"
107 layout="@layout/nav_profile_list_head" />
110 android:id="@+id/nav_profile_list_container"
111 android:layout_width="match_parent"
112 android:layout_height="wrap_content"
113 android:animateLayoutChanges="true"
114 android:nestedScrollingEnabled="false"
115 android:orientation="vertical">
117 <androidx.recyclerview.widget.RecyclerView
118 android:id="@+id/nav_profile_list"
119 android:layout_width="match_parent"
120 android:layout_height="wrap_content"
121 android:isScrollContainer="false"
122 android:nestedScrollingEnabled="false"
123 android:orientation="vertical">
125 </androidx.recyclerview.widget.RecyclerView>
134 </androidx.constraintlayout.widget.ConstraintLayout>
136 </com.google.android.material.navigation.NavigationView>