]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/profile_detail.xml
100% themed colours
[mobile-ledger.git] / app / src / main / res / layout / profile_detail.xml
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.
8   ~
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.
13   ~
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/>.
16   -->
17
18 <LinearLayout 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/profile_detail"
22     style="?android:attr/textAppearanceLarge"
23     android:layout_width="match_parent"
24     android:layout_height="match_parent"
25     android:orientation="vertical"
26     android:padding="16dp"
27     tools:context=".ui.profiles.ProfileDetailFragment">
28
29     <com.google.android.material.textfield.TextInputLayout
30         android:id="@+id/profile_name_layout"
31         android:layout_width="match_parent"
32         android:layout_height="wrap_content"
33         android:layout_marginBottom="16dp">
34
35         <com.google.android.material.textfield.TextInputEditText
36             android:id="@+id/profile_name"
37             android:layout_width="match_parent"
38             android:layout_height="wrap_content"
39             android:ems="10"
40             android:hint="@string/profile_name_label"
41             android:inputType="textPersonName" />
42     </com.google.android.material.textfield.TextInputLayout>
43
44     <com.google.android.material.textfield.TextInputLayout
45         android:id="@+id/url_layout"
46         android:layout_width="match_parent"
47         android:layout_height="wrap_content"
48         android:layout_marginBottom="16dp"
49         android:orientation="vertical">
50
51         <com.google.android.material.textfield.TextInputEditText
52             android:id="@+id/url"
53             android:layout_width="match_parent"
54             android:layout_height="wrap_content"
55             android:ems="10"
56             android:hint="@string/url_label"
57             android:inputType="textUri"
58             android:text="@string/pref_default_backend_url" />
59     </com.google.android.material.textfield.TextInputLayout>
60
61     <LinearLayout
62         android:layout_width="match_parent"
63         android:layout_height="wrap_content"
64         android:animateLayoutChanges="true"
65         android:orientation="vertical">
66
67         <Switch
68             android:id="@+id/enable_http_auth"
69             android:layout_width="match_parent"
70             android:layout_height="wrap_content"
71             android:layout_marginBottom="16dp"
72             android:text="@string/pref_title_use_http_auth"
73             android:textAppearance="?android:textAppearanceListItem" />
74
75         <LinearLayout
76             android:id="@+id/auth_params"
77             android:layout_width="match_parent"
78             android:layout_height="wrap_content"
79             android:layout_marginBottom="16dp"
80             android:animateLayoutChanges="true"
81             android:orientation="vertical"
82             android:paddingStart="8dp"
83             tools:ignore="RtlSymmetry">
84
85             <LinearLayout
86                 android:id="@+id/insecure_scheme_text"
87                 android:layout_width="match_parent"
88                 android:layout_height="wrap_content"
89                 android:layout_marginBottom="@dimen/activity_vertical_margin"
90                 android:background="?colorError"
91                 android:padding="@dimen/activity_vertical_margin"
92                 android:visibility="gone">
93
94                 <TextView
95                     android:layout_width="match_parent"
96                     android:layout_height="wrap_content"
97                     android:textColor="?colorOnError"
98                     android:text="@string/insecure_scheme_with_auth" />
99             </LinearLayout>
100
101             <com.google.android.material.textfield.TextInputLayout
102                 android:id="@+id/auth_user_name_layout"
103                 android:layout_width="match_parent"
104                 android:layout_height="wrap_content"
105                 android:layout_marginBottom="16dp"
106                 android:orientation="vertical">
107
108                 <com.google.android.material.textfield.TextInputEditText
109                     android:id="@+id/auth_user_name"
110                     android:layout_width="match_parent"
111                     android:layout_height="wrap_content"
112                     android:ems="10"
113                     android:hint="@string/pref_title_backend_auth_user"
114                     android:inputType="textPersonName" />
115             </com.google.android.material.textfield.TextInputLayout>
116
117             <com.google.android.material.textfield.TextInputLayout
118                 android:id="@+id/password_layout"
119                 android:layout_width="match_parent"
120                 android:layout_height="wrap_content"
121                 android:orientation="vertical"
122                 app:passwordToggleEnabled="true">
123
124                 <com.google.android.material.textfield.TextInputEditText
125                     android:id="@+id/password"
126                     android:layout_width="match_parent"
127                     android:layout_height="wrap_content"
128                     android:ems="10"
129                     android:hint="@string/pref_title_backend_auth_password"
130                     android:inputType="textWebPassword" />
131
132             </com.google.android.material.textfield.TextInputLayout>
133
134         </LinearLayout>
135
136         <LinearLayout
137             android:id="@+id/api_version_layout"
138             android:orientation="vertical"
139             android:layout_width="match_parent"
140             android:layout_height="wrap_content"
141             android:layout_marginBottom="16dp">
142
143             <TextView
144                 android:layout_width="match_parent"
145                 android:layout_height="wrap_content"
146                 android:text="@string/profile_api_version_title"
147                 android:textAppearance="?android:textAppearanceListItem" />
148
149             <TextView
150                 android:id="@+id/api_version_text"
151                 android:layout_width="match_parent"
152                 android:layout_height="wrap_content"
153                 android:textAppearance="?android:textAppearanceListItemSecondary"
154                 android:textColor="?attr/textColor" />
155         </LinearLayout>
156
157         <Switch
158             android:id="@+id/profile_permit_posting"
159             android:layout_width="match_parent"
160             android:layout_height="wrap_content"
161             android:layout_marginBottom="16dp"
162             android:text="@string/posting_permitted"
163             android:textAppearance="?android:textAppearanceListItem" />
164
165         <LinearLayout
166             android:id="@+id/posting_sub_items"
167             android:layout_width="match_parent"
168             android:layout_height="wrap_content"
169             android:orientation="vertical">
170
171             <LinearLayout
172                 android:id="@+id/default_commodity_layout"
173                 android:layout_width="match_parent"
174                 android:layout_height="wrap_content"
175                 android:layout_marginBottom="16dp"
176                 android:clickable="true"
177                 android:focusable="true"
178                 android:orientation="vertical">
179
180                 <TextView
181                     android:layout_width="match_parent"
182                     android:layout_height="wrap_content"
183                     android:text="@string/profile_default_commodity"
184                     android:textAppearance="?android:textAppearanceListItem" />
185
186                 <TextView
187                     android:id="@+id/default_commodity_text"
188                     android:layout_width="match_parent"
189                     android:layout_height="wrap_content"
190                     android:text="@string/btn_no_currency"
191                     android:textAppearance="?android:textAppearanceListItemSecondary"
192                     android:textColor="?attr/textColor" />
193             </LinearLayout>
194
195             <Switch
196                 android:id="@+id/profile_show_commodity"
197                 android:layout_width="match_parent"
198                 android:layout_height="wrap_content"
199                 android:layout_marginBottom="16dp"
200                 android:text="@string/currency_input_by_default"
201                 android:textAppearance="?android:textAppearanceListItem" />
202
203             <Switch
204                 android:id="@+id/profile_show_comments"
205                 android:layout_width="match_parent"
206                 android:layout_height="wrap_content"
207                 android:layout_marginBottom="16dp"
208                 android:text="@string/show_comment_input_by_default"
209                 android:textAppearance="?android:textAppearanceListItem" />
210
211             <LinearLayout
212                 android:id="@+id/future_dates_layout"
213                 android:layout_width="match_parent"
214                 android:layout_height="wrap_content"
215                 android:layout_marginBottom="16dp"
216                 android:orientation="vertical">
217
218                 <TextView
219                     android:id="@+id/future_dates_title"
220                     android:layout_width="match_parent"
221                     android:layout_height="wrap_content"
222                     android:text="@string/profile_future_dates_label"
223                     android:textAppearance="?android:textAppearanceListItem" />
224
225                 <TextView
226                     android:id="@+id/future_dates_text"
227                     android:layout_width="match_parent"
228                     android:layout_height="wrap_content"
229                     android:textAppearance="?android:textAppearanceListItemSecondary"
230                     android:textColor="?attr/textColor" />
231             </LinearLayout>
232
233             <com.google.android.material.textfield.TextInputLayout
234                 android:id="@+id/preferred_accounts_accounts_filter_layout"
235                 android:layout_width="match_parent"
236                 android:layout_height="wrap_content"
237                 android:layout_marginBottom="16dp"
238                 android:orientation="vertical">
239
240                 <com.google.android.material.textfield.TextInputEditText
241                     android:id="@+id/preferred_accounts_filter_filter"
242                     android:layout_width="match_parent"
243                     android:layout_height="wrap_content"
244                     android:ems="10"
245                     android:fontFamily="monospace"
246                     android:hint="@string/pref_preferred_autocompletion_account_filter_hint"
247                     android:inputType="text"
248                     android:textColor="?attr/editTextColor" />
249             </com.google.android.material.textfield.TextInputLayout>
250         </LinearLayout>
251
252         <LinearLayout
253             android:layout_width="match_parent"
254             android:layout_height="match_parent"
255             android:orientation="horizontal">
256
257             <TextView
258                 android:layout_width="wrap_content"
259                 android:layout_height="match_parent"
260                 android:layout_weight="100"
261                 android:gravity="center_vertical"
262                 android:text="@string/profile_color_label"
263                 android:textAppearance="?android:textAppearanceListItem" />
264
265             <ImageButton
266                 android:id="@+id/btn_pick_ring_color"
267                 android:layout_width="@dimen/thumb_row_height"
268                 android:layout_height="@dimen/thumb_row_height"
269                 android:layout_weight="1"
270                 android:background="?colorPrimary"
271                 android:contentDescription="@string/btn_color_picker_button"
272                 app:srcCompat="@drawable/ic_palette_black_24dp"
273                 android:tint="?android:attr/colorBackground" />
274
275         </LinearLayout>
276
277     </LinearLayout>
278 </LinearLayout>