1 <?xml version="1.0" encoding="utf-8"?><!--
2 ~ Copyright © 2019 Damyan Ivanov.
3 ~ This file is part of Mobile-Ledger.
4 ~ Mobile-Ledger 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 ~ Mobile-Ledger 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/>.
17 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:app="http://schemas.android.com/apk/res-auto"
19 xmlns:tools="http://schemas.android.com/tools"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent"
22 android:orientation="vertical"
23 android:theme="@style/AppTheme.AppBarOverlay"
24 tools:context=".ui.activity.MainActivity">
26 <android.support.v7.widget.Toolbar
27 android:id="@+id/toolbar"
28 android:layout_width="match_parent"
29 android:layout_height="?attr/actionBarSize"
30 android:background="@color/colorPrimary"
31 app:popupTheme="@style/AppTheme.PopupOverlay" />
33 <android.support.v4.widget.DrawerLayout
34 android:id="@+id/drawer_layout"
35 android:layout_width="match_parent"
36 android:layout_height="match_parent"
37 tools:openDrawer="start">
39 <android.support.constraint.ConstraintLayout
40 android:layout_width="match_parent"
41 android:layout_height="match_parent">
43 <android.support.design.widget.FloatingActionButton
44 android:id="@+id/btn_add_transaction"
45 android:layout_width="wrap_content"
46 android:layout_height="wrap_content"
47 android:layout_gravity="bottom|end"
48 android:layout_margin="@dimen/fab_margin"
49 android:onClick="fabNewTransactionClicked"
50 app:backgroundTint="@color/colorPrimary"
51 app:layout_constraintBottom_toBottomOf="parent"
52 app:layout_constraintEnd_toEndOf="parent"
53 app:srcCompat="@drawable/svg_thick_plus_white" />
56 android:id="@+id/main_header"
57 android:layout_width="match_parent"
58 android:layout_height="wrap_content"
59 android:orientation="vertical"
60 android:theme="@style/AppTheme"
61 app:layout_constraintEnd_toEndOf="parent"
62 app:layout_constraintStart_toStartOf="parent"
63 app:layout_constraintTop_toTopOf="parent">
66 android:id="@+id/transaction_list_account_name_filter"
67 android:layout_width="match_parent"
68 android:layout_height="match_parent"
69 android:orientation="horizontal"
70 android:visibility="gone">
73 android:layout_width="wrap_content"
74 android:layout_height="wrap_content"
75 android:background="@drawable/ic_filter_list_black_24dp" />
78 android:id="@+id/transaction_filter_account_name"
79 android:layout_width="0dp"
80 android:layout_height="wrap_content"
81 android:layout_weight="1" />
84 android:id="@+id/clearAccountNameFilter"
85 android:layout_width="wrap_content"
86 android:layout_height="wrap_content"
87 android:background="@drawable/ic_clear_black_24dp"
88 android:clickable="true"
89 android:focusable="true" />
94 android:layout_width="match_parent"
95 android:layout_height="wrap_content"
96 android:elevation="24dp"
97 android:orientation="horizontal">
100 android:id="@+id/transaction_last_update_label"
101 android:layout_width="wrap_content"
102 android:layout_height="wrap_content"
103 android:paddingStart="8dp"
104 android:paddingEnd="8dp"
105 android:text="@string/transactions_last_update_label"
106 android:textColor="@android:color/tertiary_text_light" />
109 android:id="@+id/transactions_last_update"
110 style="@android:style/Widget.DeviceDefault.Light.TextView"
111 android:layout_width="0dp"
112 android:layout_height="wrap_content"
113 android:layout_weight="1"
115 android:textColor="@android:color/tertiary_text_light"
116 tools:ignore="HardcodedText" />
120 android:id="@+id/transaction_progress_layout"
121 android:layout_width="match_parent"
122 android:layout_height="wrap_content"
123 android:gravity="center_vertical"
124 android:orientation="horizontal"
125 android:visibility="gone">
128 android:id="@+id/transaction_list_progress_bar"
129 style="?android:attr/progressBarStyleHorizontal"
130 android:layout_width="0dp"
131 android:layout_height="wrap_content"
132 android:layout_marginTop="-8dp"
133 android:layout_marginBottom="-7dp"
134 android:layout_weight="1"
135 android:indeterminate="true"
136 android:padding="0dp"
137 android:progressTint="@color/colorPrimary"
138 app:layout_constraintEnd_toEndOf="parent"
139 app:layout_constraintStart_toStartOf="parent" />
142 android:id="@+id/transaction_list_cancel_download"
143 android:layout_width="wrap_content"
144 android:layout_height="wrap_content"
145 android:background="@drawable/ic_clear_black_24dp"
146 android:clickable="true"
147 android:focusable="true"
148 android:onClick="onStopTransactionRefreshClick" />
153 <android.support.v4.view.ViewPager
154 android:id="@+id/root_frame"
155 android:layout_width="match_parent"
156 android:layout_height="0dp"
157 app:layout_behavior="@string/appbar_scrolling_view_behavior"
158 app:layout_constraintBottom_toBottomOf="parent"
159 app:layout_constraintTop_toBottomOf="@+id/main_header">
161 </android.support.v4.view.ViewPager>
164 android:layout_width="0dp"
165 android:layout_height="4dp"
166 android:background="@drawable/drop_shadow"
167 app:layout_constraintTop_toBottomOf="@id/main_header" />
169 </android.support.constraint.ConstraintLayout>
172 <android.support.design.widget.NavigationView
173 android:id="@+id/nav_view"
174 android:layout_width="wrap_content"
175 android:layout_height="match_parent"
176 android:layout_gravity="start"
177 android:fitsSystemWindows="true"
178 android:theme="@style/ThemeOverlay.AppCompat.Light">
181 <android.support.constraint.ConstraintLayout
182 android:layout_width="match_parent"
183 android:layout_height="match_parent"
184 android:layout_marginBottom="0dp"
185 android:orientation="vertical">
188 android:id="@+id/nav_fixed_items"
189 android:layout_width="match_parent"
190 android:layout_height="wrap_content"
191 android:divider="@drawable/list_divider"
192 android:elevation="2dp"
193 android:orientation="vertical"
194 android:showDividers="beginning"
195 app:layout_constraintBottom_toBottomOf="parent">
198 android:id="@+id/nav_profiles"
199 style="@style/nav_button"
200 android:layout_width="match_parent"
201 android:layout_weight="1"
202 android:drawableStart="@drawable/ic_view_list_black_24dp"
203 android:onClick="navProfilesClicked"
204 android:text="@string/profiles" />
207 android:id="@+id/textView2"
208 style="@style/nav_button"
209 android:layout_weight="1"
210 android:drawableStart="@drawable/ic_settings_black_24dp"
211 android:onClick="navSettingsClicked"
212 android:text="@string/action_settings" />
217 android:layout_width="0dp"
218 android:layout_height="0dp"
219 app:layout_constraintBottom_toTopOf="@+id/nav_fixed_items"
220 app:layout_constraintEnd_toEndOf="parent"
221 app:layout_constraintLeft_toLeftOf="parent"
222 app:layout_constraintStart_toStartOf="parent"
223 app:layout_constraintTop_toTopOf="parent">
226 android:id="@+id/nav_upper"
227 android:layout_width="match_parent"
228 android:layout_height="wrap_content"
229 android:orientation="vertical"
230 app:layout_constraintBottom_toTopOf="@+id/nav_fixed_items"
231 app:layout_constraintTop_toBottomOf="@+id/nav_header">
234 android:id="@+id/nav_header"
235 android:layout_width="match_parent"
236 android:layout_height="wrap_content"
237 android:background="@drawable/side_nav_bar"
238 android:gravity="center_vertical"
239 android:orientation="horizontal"
240 android:padding="@dimen/activity_vertical_margin"
241 android:theme="@style/ThemeOverlay.AppCompat.Dark"
242 app:layout_constraintTop_toTopOf="parent">
244 <include layout="@layout/nav_header_logo" />
247 android:layout_width="match_parent"
248 android:layout_height="match_parent"
249 android:layout_marginStart="@dimen/activity_horizontal_margin"
250 android:layout_marginEnd="@dimen/activity_horizontal_margin"
251 android:gravity="center_vertical"
252 android:orientation="vertical">
255 android:layout_width="match_parent"
256 android:layout_height="wrap_content"
257 android:text="@string/app_name"
258 android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
261 android:id="@+id/drawer_version_text"
262 android:layout_width="wrap_content"
263 android:layout_height="wrap_content"
264 android:text="dummy version"
265 tools:ignore="HardcodedText" />
271 android:id="@+id/nav_actions"
272 android:layout_width="match_parent"
273 android:layout_height="match_parent"
274 android:orientation="vertical">
277 android:id="@+id/nav_account_summary"
278 style="@style/nav_button"
279 android:drawableStart="@drawable/ic_home_black_24dp"
280 android:onClick="onAccountSummaryClicked"
281 android:text="@string/account_summary_title" />
284 android:id="@+id/nav_latest_transactions"
285 style="@style/nav_button"
286 android:drawableStart="@drawable/ic_event_note_black_24dp"
287 android:onClick="onLatestTransactionsClicked"
288 android:text="@string/nav_latest_transactions_title" />
291 android:id="@+id/textView5"
292 style="@style/nav_button"
293 android:drawableStart="@drawable/ic_assignment_black_24dp"
294 android:text="@string/nav_reports_title" />
301 </android.support.constraint.ConstraintLayout>
303 </android.support.design.widget.NavigationView>
305 </android.support.v4.widget.DrawerLayout>