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 MoLe. If not, see <https://www.gnu.org/licenses/>.
18 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 xmlns:tools="http://schemas.android.com/tools"
20 xmlns:app="http://schemas.android.com/apk/res-auto"
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">
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">
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"
40 android:hint="@string/profile_name_label"
41 android:inputType="textPersonName" />
42 </com.google.android.material.textfield.TextInputLayout>
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">
51 <com.google.android.material.textfield.TextInputEditText
53 android:layout_width="match_parent"
54 android:layout_height="wrap_content"
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>
62 android:layout_width="match_parent"
63 android:layout_height="wrap_content"
64 android:animateLayoutChanges="true"
65 android:orientation="vertical">
68 android:id="@+id/profile_permit_posting"
69 android:layout_width="match_parent"
70 android:layout_height="wrap_content"
71 android:layout_marginBottom="16dp"
72 android:text="@string/posting_permitted" />
75 android:id="@+id/enable_http_auth"
76 android:layout_width="match_parent"
77 android:layout_height="wrap_content"
78 android:layout_marginBottom="16dp"
79 android:text="@string/pref_title_use_http_auth" />
82 android:id="@+id/auth_params"
83 android:layout_width="match_parent"
84 android:layout_height="wrap_content"
85 android:orientation="vertical"
86 android:paddingStart="8dp"
87 android:animateLayoutChanges="true"
88 tools:ignore="RtlSymmetry">
91 android:id="@+id/insecure_scheme_text"
92 android:layout_width="match_parent"
93 android:layout_height="wrap_content"
94 android:layout_marginBottom="@dimen/activity_vertical_margin"
95 android:background="@color/error_background"
96 android:padding="@dimen/activity_vertical_margin"
97 android:visibility="gone">
100 android:layout_width="match_parent"
101 android:layout_height="wrap_content"
102 android:text="@string/insecure_scheme_with_auth" />
105 <com.google.android.material.textfield.TextInputLayout
106 android:id="@+id/auth_user_name_layout"
107 android:layout_width="match_parent"
108 android:layout_height="wrap_content"
109 android:layout_marginBottom="16dp"
110 android:orientation="vertical">
112 <com.google.android.material.textfield.TextInputEditText
113 android:id="@+id/auth_user_name"
114 android:layout_width="match_parent"
115 android:layout_height="wrap_content"
117 android:hint="@string/pref_title_backend_auth_user"
118 android:inputType="textPersonName" />
119 </com.google.android.material.textfield.TextInputLayout>
121 <com.google.android.material.textfield.TextInputLayout
122 android:id="@+id/password_layout"
123 android:layout_width="match_parent"
124 android:layout_height="wrap_content"
125 android:orientation="vertical"
126 app:passwordToggleEnabled="true">
128 <com.google.android.material.textfield.TextInputEditText
129 android:id="@+id/password"
130 android:layout_width="match_parent"
131 android:layout_height="wrap_content"
133 android:hint="@string/pref_title_backend_auth_password"
134 android:inputType="textWebPassword" />
136 </com.google.android.material.textfield.TextInputLayout>
140 <com.google.android.material.textfield.TextInputLayout
141 android:id="@+id/preferred_accounts_accounts_filter_layout"
142 android:layout_width="match_parent"
143 android:layout_height="wrap_content"
144 android:layout_marginBottom="16dp"
145 android:orientation="vertical">
147 <com.google.android.material.textfield.TextInputEditText
148 android:id="@+id/preferred_accounts_filter_filter"
149 android:layout_width="match_parent"
150 android:layout_height="wrap_content"
152 android:fontFamily="monospace"
153 android:hint="@string/pref_preferred_autocompletion_account_filter_hint"
154 android:inputType="text" />
155 </com.google.android.material.textfield.TextInputLayout>
158 android:layout_width="match_parent"
159 android:layout_height="match_parent"
160 android:orientation="horizontal">
163 android:layout_width="wrap_content"
164 android:layout_height="match_parent"
165 android:layout_weight="100"
166 android:gravity="center_vertical"
167 android:text="@string/profile_color_label" />
170 android:id="@+id/btn_pick_ring_color"
171 android:layout_width="@dimen/thumb_row_height"
172 android:layout_height="@dimen/thumb_row_height"
173 android:layout_weight="1"
174 android:background="?colorPrimary"
175 android:contentDescription="@string/btn_color_picker_button"
176 android:src="@drawable/ic_palette_black_24dp"
177 android:tint="?drawer_background" />