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 Mobile-Ledger. 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"
27 tools:showIn="@layout/activity_main">
30 <androidx.constraintlayout.widget.ConstraintLayout
31 android:layout_width="match_parent"
32 android:layout_height="match_parent"
33 android:layout_marginBottom="0dp"
34 android:animateLayoutChanges="true"
35 android:orientation="vertical">
38 android:id="@+id/nav_fixed_items"
39 android:layout_width="match_parent"
40 android:layout_height="wrap_content"
41 android:divider="@drawable/list_divider"
42 android:elevation="2dp"
43 android:orientation="vertical"
44 android:showDividers="beginning"
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:onClick="navSettingsClicked"
53 android:text="@string/action_settings" />
58 android:layout_width="0dp"
59 android:layout_height="0dp"
60 app:layout_constraintBottom_toTopOf="@+id/nav_fixed_items"
61 app:layout_constraintEnd_toEndOf="parent"
62 app:layout_constraintLeft_toLeftOf="parent"
63 app:layout_constraintStart_toStartOf="parent"
64 app:layout_constraintTop_toTopOf="parent">
67 android:id="@+id/nav_upper"
68 android:layout_width="match_parent"
69 android:layout_height="wrap_content"
70 android:animateLayoutChanges="true"
71 android:divider="@drawable/list_divider_inside_out"
72 android:orientation="vertical"
73 android:showDividers="beginning"
74 app:layout_constraintBottom_toTopOf="@+id/nav_fixed_items"
75 app:layout_constraintTop_toBottomOf="@+id/nav_header">
78 android:id="@+id/nav_header"
79 android:layout_width="match_parent"
80 android:layout_height="wrap_content"
81 android:background="@drawable/side_nav_bar"
82 android:gravity="center_vertical"
83 android:orientation="horizontal"
84 android:padding="@dimen/activity_vertical_margin"
85 android:theme="@style/ThemeOverlay.AppCompat.Dark"
86 app:layout_constraintTop_toTopOf="parent">
88 <include layout="@layout/nav_header_logo" />
91 android:layout_width="match_parent"
92 android:layout_height="match_parent"
93 android:layout_marginStart="@dimen/activity_horizontal_margin"
94 android:layout_marginEnd="@dimen/activity_horizontal_margin"
95 android:gravity="center_vertical"
96 android:orientation="vertical">
99 android:layout_width="match_parent"
100 android:layout_height="wrap_content"
101 android:text="@string/app_name"
102 android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
105 android:id="@+id/drawer_version_text"
106 android:layout_width="wrap_content"
107 android:layout_height="wrap_content"
108 android:text="dummy version"
109 tools:ignore="HardcodedText" />
115 android:id="@+id/nav_actions"
116 android:layout_width="match_parent"
117 android:layout_height="match_parent"
118 android:orientation="vertical">
121 android:id="@+id/nav_account_summary"
122 style="@style/nav_button"
123 android:drawableStart="@drawable/ic_home_black_24dp"
124 android:onClick="onAccountSummaryClicked"
125 android:text="@string/account_summary_title" />
128 android:id="@+id/nav_latest_transactions"
129 style="@style/nav_button"
130 android:drawableStart="@drawable/ic_event_note_black_24dp"
131 android:onClick="onLatestTransactionsClicked"
132 android:text="@string/nav_latest_transactions_title" />
135 android:id="@+id/textView5"
136 style="@style/nav_button"
137 android:drawableStart="@drawable/ic_assignment_black_24dp"
138 android:text="@string/nav_reports_title" />
140 <include layout="@layout/nav_profile_list_head" />
143 android:id="@+id/nav_profile_list_container"
144 android:layout_width="match_parent"
145 android:layout_height="wrap_content"
146 android:animateLayoutChanges="true"
147 android:orientation="vertical"
148 android:visibility="gone">
150 <androidx.recyclerview.widget.RecyclerView
151 android:id="@+id/nav_profile_list"
152 android:layout_width="match_parent"
153 android:layout_height="wrap_content"
154 android:orientation="vertical"
155 android:paddingStart="0dp">
157 </androidx.recyclerview.widget.RecyclerView>
159 <include layout="@layout/nav_profile_list_new_profile_row" />
167 </androidx.constraintlayout.widget.ConstraintLayout>
169 </com.google.android.material.navigation.NavigationView>