OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
3 android:title="@string/pref_advanced_title" > | 3 android:title="@string/pref_advanced_title" > |
4 | 4 |
5 <CheckBoxPreference | 5 <CheckBoxPreference |
6 android:defaultValue="@bool/def_startatboot" | 6 android:defaultValue="@bool/def_startatboot" |
7 android:key="@string/pref_startatboot" | 7 android:key="@string/pref_startatboot" |
8 android:summaryOff="@string/pref_startatboot_summary_off" | 8 android:summaryOff="@string/pref_startatboot_summary_off" |
9 android:summaryOn="@string/pref_startatboot_summary_on" | 9 android:summaryOn="@string/pref_startatboot_summary_on" |
10 android:title="@string/pref_startatboot_title" /> | 10 android:title="@string/pref_startatboot_title" /> |
| 11 <CheckBoxPreference |
| 12 android:defaultValue="@bool/def_priority" |
| 13 android:key="@string/pref_priority" |
| 14 android:summaryOff="@string/pref_priority_summary_off" |
| 15 android:summaryOn="@string/pref_priority_summary_on" |
| 16 android:title="@string/pref_priority_title" /> |
11 | 17 |
12 <PreferenceCategory android:title="@string/pref_subscription_title" > | 18 <PreferenceCategory android:title="@string/pref_subscription_title" > |
13 <ListPreference | 19 <ListPreference |
14 android:defaultValue="@integer/def_refresh" | 20 android:defaultValue="@integer/def_refresh" |
15 android:dialogTitle="@string/pref_refresh_title" | 21 android:dialogTitle="@string/pref_refresh_title" |
16 android:entries="@array/refresh_names" | 22 android:entries="@array/refresh_names" |
17 android:entryValues="@array/refresh_values" | 23 android:entryValues="@array/refresh_values" |
18 android:key="@string/pref_refresh" | 24 android:key="@string/pref_refresh" |
19 android:title="@string/pref_refresh_title" /> | 25 android:title="@string/pref_refresh_title" /> |
20 | 26 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 67 |
62 <Preference | 68 <Preference |
63 android:key="@string/pref_checkupdate" | 69 android:key="@string/pref_checkupdate" |
64 android:title="@string/pref_checkupdate_title" /> | 70 android:title="@string/pref_checkupdate_title" /> |
65 <Preference | 71 <Preference |
66 android:key="@string/pref_configuration" | 72 android:key="@string/pref_configuration" |
67 android:title="@string/pref_configuration_title" /> | 73 android:title="@string/pref_configuration_title" /> |
68 </PreferenceCategory> | 74 </PreferenceCategory> |
69 | 75 |
70 </PreferenceScreen> | 76 </PreferenceScreen> |
OLD | NEW |