]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/profile_detail.xml
d095f094ae91876be8fc324b918f55827ac6e4e7
[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="@color/error_background"
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:text="@string/insecure_scheme_with_auth" />
98             </LinearLayout>
99
100             <com.google.android.material.textfield.TextInputLayout
101                 android:id="@+id/auth_user_name_layout"
102                 android:layout_width="match_parent"
103                 android:layout_height="wrap_content"
104                 android:layout_marginBottom="16dp"
105                 android:orientation="vertical">
106
107                 <com.google.android.material.textfield.TextInputEditText
108                     android:id="@+id/auth_user_name"
109                     android:layout_width="match_parent"
110                     android:layout_height="wrap_content"
111                     android:ems="10"
112                     android:hint="@string/pref_title_backend_auth_user"
113                     android:inputType="textPersonName" />
114             </com.google.android.material.textfield.TextInputLayout>
115
116             <com.google.android.material.textfield.TextInputLayout
117                 android:id="@+id/password_layout"
118                 android:layout_width="match_parent"
119                 android:layout_height="wrap_content"
120                 android:orientation="vertical"
121                 app:passwordToggleEnabled="true">
122
123                 <com.google.android.material.textfield.TextInputEditText
124                     android:id="@+id/password"
125                     android:layout_width="match_parent"
126                     android:layout_height="wrap_content"
127                     android:ems="10"
128                     android:hint="@string/pref_title_backend_auth_password"
129                     android:inputType="textWebPassword" />
130
131             </com.google.android.material.textfield.TextInputLayout>
132
133         </LinearLayout>
134
135         <Switch
136             android:id="@+id/profile_permit_posting"
137             android:layout_width="match_parent"
138             android:layout_height="wrap_content"
139             android:layout_marginBottom="16dp"
140             android:text="@string/posting_permitted"
141             android:textAppearance="?android:textAppearanceListItem" />
142
143         <LinearLayout
144             android:id="@+id/future_dates_layout"
145             android:layout_width="match_parent"
146             android:layout_height="wrap_content"
147             android:layout_marginBottom="16dp"
148             android:orientation="vertical">
149
150             <TextView
151                 android:id="@+id/future_dates_title"
152                 android:layout_width="match_parent"
153                 android:layout_height="wrap_content"
154                 android:text="@string/profile_future_dates_label"
155                 android:textAppearance="?android:textAppearanceListItem" />
156
157             <TextView
158                 android:id="@+id/future_dates_text"
159                 android:layout_width="match_parent"
160                 android:layout_height="wrap_content"
161                 android:textAppearance="?android:textAppearanceListItemSecondary"
162                 android:textColor="?attr/textColor" />
163         </LinearLayout>
164
165         <com.google.android.material.textfield.TextInputLayout
166             android:id="@+id/preferred_accounts_accounts_filter_layout"
167             android:layout_width="match_parent"
168             android:layout_height="wrap_content"
169             android:layout_marginBottom="16dp"
170             android:orientation="vertical">
171
172             <com.google.android.material.textfield.TextInputEditText
173                 android:id="@+id/preferred_accounts_filter_filter"
174                 android:layout_width="match_parent"
175                 android:layout_height="wrap_content"
176                 android:ems="10"
177                 android:fontFamily="monospace"
178                 android:hint="@string/pref_preferred_autocompletion_account_filter_hint"
179                 android:inputType="text"
180                 android:textColor="?attr/editTextColor" />
181         </com.google.android.material.textfield.TextInputLayout>
182
183         <LinearLayout
184             android:layout_width="match_parent"
185             android:layout_height="match_parent"
186             android:orientation="horizontal">
187
188             <TextView
189                 android:layout_width="wrap_content"
190                 android:layout_height="match_parent"
191                 android:layout_weight="100"
192                 android:gravity="center_vertical"
193                 android:text="@string/profile_color_label"
194                 android:textAppearance="?android:textAppearanceListItem" />
195
196             <ImageButton
197                 android:id="@+id/btn_pick_ring_color"
198                 android:layout_width="@dimen/thumb_row_height"
199                 android:layout_height="@dimen/thumb_row_height"
200                 android:layout_weight="1"
201                 android:background="?colorPrimary"
202                 android:contentDescription="@string/btn_color_picker_button"
203                 android:src="@drawable/ic_palette_black_24dp"
204                 android:tint="?drawer_background" />
205
206         </LinearLayout>
207
208     </LinearLayout>
209 </LinearLayout>