Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: res/xml/preferences_advanced.xml

Issue 8363097: ABP/Android preferences UI (Closed) Base URL: https://hg.adblockplus.org/adblockplusandroid/
Patch Set: Created Sept. 14, 2012, 8:20 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(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 </PreferenceCategory>
62
63 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld