OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 android:title="@string/pref_advanced_title" > |
| 4 |
| 5 <CheckBoxPreference |
| 6 android:defaultValue="@bool/def_startatboot" |
| 7 android:key="@string/pref_startatboot" |
| 8 android:summaryOff="@string/pref_startatboot_summary_off" |
| 9 android:summaryOn="@string/pref_startatboot_summary_on" |
| 10 android:title="@string/pref_startatboot_title" /> |
| 11 |
| 12 <PreferenceCategory android:title="@string/pref_subscription_title" > |
| 13 <ListPreference |
| 14 android:defaultValue="@integer/def_refresh" |
| 15 android:dialogTitle="@string/pref_refresh_title" |
| 16 android:entries="@array/refresh_names" |
| 17 android:entryValues="@array/refresh_values" |
| 18 android:key="@string/pref_refresh" |
| 19 android:title="@string/pref_refresh_title" /> |
| 20 |
| 21 <CheckBoxPreference |
| 22 android:defaultValue="@bool/def_wifirefresh" |
| 23 android:key="@string/pref_wifirefresh" |
| 24 android:summaryOff="@string/pref_wifirefresh_summary_off" |
| 25 android:summaryOn="@string/pref_wifirefresh_summary_on" |
| 26 android:title="@string/pref_wifirefresh_title" /> |
| 27 </PreferenceCategory> |
| 28 <PreferenceCategory |
| 29 android:key="@string/pref_proxy" |
| 30 android:title="@string/pref_proxy_title" > |
| 31 <EditTextPreference |
| 32 android:inputType="text" |
| 33 android:key="@string/pref_proxyhost" |
| 34 android:singleLine="true" |
| 35 android:title="@string/pref_proxyhost_title" /> |
| 36 <EditTextPreference |
| 37 android:inputType="number" |
| 38 android:key="@string/pref_proxyport" |
| 39 android:singleLine="true" |
| 40 android:title="@string/pref_proxyport_title" /> |
| 41 <EditTextPreference |
| 42 android:inputType="text" |
| 43 android:key="@string/pref_proxyuser" |
| 44 android:singleLine="true" |
| 45 android:title="@string/pref_proxyuser_title" /> |
| 46 <EditTextPreference |
| 47 android:inputType="textPassword" |
| 48 android:key="@string/pref_proxypass" |
| 49 android:singleLine="true" |
| 50 android:title="@string/pref_proxypass_title" /> |
| 51 </PreferenceCategory> |
| 52 <PreferenceCategory |
| 53 android:key="@string/pref_support" |
| 54 android:title="@string/pref_support_title" > |
| 55 <CheckBoxPreference |
| 56 android:defaultValue="@bool/def_crashreport" |
| 57 android:key="@string/pref_crashreport" |
| 58 android:summaryOff="@string/pref_crashreport_summary_off" |
| 59 android:summaryOn="@string/pref_crashreport_summary_on" |
| 60 android:title="@string/pref_crashreport_title" /> |
| 61 |
| 62 <Preference |
| 63 android:key="@string/pref_checkupdate" |
| 64 android:title="@string/pref_checkupdate_title" /> |
| 65 <Preference |
| 66 android:key="@string/pref_configuration" |
| 67 android:title="@string/pref_configuration_title" /> |
| 68 </PreferenceCategory> |
| 69 |
| 70 </PreferenceScreen> |
OLD | NEW |