]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/activity_main.xml
43a1132a8aee541ff28c65a38f41d8db48fd29dc
[mobile-ledger.git] / app / src / main / res / layout / activity_main.xml
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.
8   ~
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.
13   ~
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/>.
16   -->
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">
25
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" />
32
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">
38
39         <android.support.constraint.ConstraintLayout
40             android:layout_width="match_parent"
41             android:layout_height="match_parent">
42
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" />
54
55             <LinearLayout
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">
64
65                 <LinearLayout
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">
71
72                     <TextView
73                         android:layout_width="wrap_content"
74                         android:layout_height="wrap_content"
75                         android:background="@drawable/ic_filter_list_black_24dp" />
76
77                     <AutoCompleteTextView
78                         android:id="@+id/transaction_filter_account_name"
79                         android:layout_width="0dp"
80                         android:layout_height="wrap_content"
81                         android:layout_weight="1" />
82
83                     <TextView
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" />
90
91                 </LinearLayout>
92
93                 <LinearLayout
94                     android:layout_width="match_parent"
95                     android:layout_height="wrap_content"
96                     android:elevation="24dp"
97                     android:orientation="horizontal">
98
99                     <TextView
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" />
107
108                     <TextView
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"
114                         android:text="\?"
115                         android:textColor="@android:color/tertiary_text_light"
116                         tools:ignore="HardcodedText" />
117                 </LinearLayout>
118
119                 <LinearLayout
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">
126
127                     <ProgressBar
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" />
140
141                     <TextView
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" />
149                 </LinearLayout>
150
151             </LinearLayout>
152
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">
160
161             </android.support.v4.view.ViewPager>
162
163             <View
164                 android:layout_width="0dp"
165                 android:layout_height="4dp"
166                 android:background="@drawable/drop_shadow"
167                 app:layout_constraintTop_toBottomOf="@id/main_header" />
168
169         </android.support.constraint.ConstraintLayout>
170
171
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">
179
180
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">
186
187                 <LinearLayout
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">
196
197                     <TextView
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" />
205
206                     <TextView
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" />
213
214                 </LinearLayout>
215
216                 <ScrollView
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">
224
225                     <LinearLayout
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">
232
233                         <LinearLayout
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">
243
244                             <include layout="@layout/nav_header_logo" />
245
246                             <LinearLayout
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">
253
254                                 <TextView
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" />
259
260                                 <TextView
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" />
266                             </LinearLayout>
267
268                         </LinearLayout>
269
270                         <LinearLayout
271                             android:id="@+id/nav_actions"
272                             android:layout_width="match_parent"
273                             android:layout_height="match_parent"
274                             android:orientation="vertical">
275
276                             <TextView
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" />
282
283                             <TextView
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" />
289
290                             <TextView
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" />
295
296                         </LinearLayout>
297
298                     </LinearLayout>
299                 </ScrollView>
300
301             </android.support.constraint.ConstraintLayout>
302
303         </android.support.design.widget.NavigationView>
304
305     </android.support.v4.widget.DrawerLayout>
306 </LinearLayout>