-
-
Notifications
You must be signed in to change notification settings - Fork 813
Expand file tree
/
Copy pathaccount_editor_wapp.xml
More file actions
57 lines (54 loc) · 2.27 KB
/
account_editor_wapp.xml
File metadata and controls
57 lines (54 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2013, Redsolution LTD. All rights reserved.
This file is part of Xabber project; you can redistribute it and/or
modify it under the terms of the GNU General Public License, Version 3.
Xabber is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License,
along with this program. If not, see http://www.gnu.org/licenses/.
-->
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBoxPreference
android:title="@string/account_enabled"
android:summary="@string/account_enabled_summary"
android:key="@string/account_enabled_key"
/>
<CheckBoxPreference
android:title="@string/account_syncable"
android:summary="@string/account_syncable_summary"
android:key="@string/account_syncable_key"
/>
<EditTextPreference
android:key="@string/account_username_key"
android:title="@string/account_user_name"
android:dialogTitle="@string/account_user_name"
android:singleLine="true"
/>
<CheckBoxPreference
android:title="@string/account_store_password"
android:summary="@string/account_store_password_summary"
android:key="@string/account_store_password_key"
/>
<EditTextPreference
android:key="@string/account_password_key"
android:title="@string/account_password"
android:dialogTitle="@string/account_password"
android:password="true"
android:singleLine="true"
/>
<EditTextPreference
android:key="@string/account_resource_key"
android:title="@string/account_resource"
android:dialogTitle="@string/account_resource"
android:singleLine="true"
/>
<ListPreference
android:title="@string/account_archive_mode"
android:key="@string/account_archive_mode_key"
android:entries="@array/account_archive_mode_entries"
android:entryValues="@array/account_archive_mode_entryvalues"
/>
</PreferenceScreen>