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

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

Issue 8959056: android: notification icon option (Closed)
Patch Set: Created Nov. 28, 2012, 8:19 a.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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld