-
Notifications
You must be signed in to change notification settings - Fork 541
Expand file tree
/
Copy pathfragment_general_preferences.xml
More file actions
28 lines (24 loc) · 1.24 KB
/
fragment_general_preferences.xml
File metadata and controls
28 lines (24 loc) · 1.24 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
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/prefs_ui_category_title">
<CheckBoxPreference
android:key="@string/key_use_double_back_button_press_to_quit"
android:title="@string/prefs_ui_title_use_double_back_button_press_to_quit"
android:summary="@string/prefs_ui_summary_use_double_back_button_press_to_quit" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/title_passcode_preferences">
<CheckBoxPreference
android:key="@string/key_enable_passcode"
android:title="@string/title_enable_passcode" />
<Preference
android:key="@string/key_change_passcode"
android:title="@string/title_change_passcode"
android:dependency="@string/key_enable_passcode" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/title_report_prefs">
<CheckBoxPreference
android:key="@string/key_use_account_color"
android:title="@string/title_use_account_color"
android:summary="@string/summary_use_account_color" />
</PreferenceCategory>
</PreferenceScreen>