-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathfragment_settings.xml
More file actions
35 lines (26 loc) · 1.2 KB
/
fragment_settings.xml
File metadata and controls
35 lines (26 loc) · 1.2 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
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/app_settings">
<Preference
android:key="@string/key_user_name"
android:icon="@drawable/ic_account_circle_black_24dp"
android:title="@string/your_name" />
<Preference
android:key="@string/key_delete_temporary_files"
android:icon="@drawable/ic_delete_black_24dp"
android:summary="@string/summary_temp_files"
android:title="@string/delete_temp_files" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/advance_settings">
<Preference
android:key="@string/key_restore_project"
android:icon="@drawable/ic_input_black_24dp"
android:summary="@string/summary_restore_project"
android:title="@string/restore_project" />
</PreferenceCategory>
<PreferenceScreen
android:key="@string/pref_rate_key"
android:title="@string/pref_rate_title"
android:icon="@drawable/ic_star_black_24dp"
android:summary="@string/pref_rate_summary"/>
</PreferenceScreen>