1 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
3 <!-- NOTE: Hide buttons to simplify the UI. Users can touch outside the dialog to
5 <!-- NOTE: ListPreference's summary should be set to its value by the activity code. -->
7 android:defaultValue="180"
8 android:entries="@array/pref_sync_frequency_titles"
9 android:entryValues="@array/pref_sync_frequency_values"
10 android:key="sync_frequency"
11 android:negativeButtonText="@null"
12 android:positiveButtonText="@null"
13 android:title="@string/pref_title_sync_frequency" />
15 <!-- This preference simply launches an intent when selected. Use this UI sparingly, per
16 design guidelines. -->
17 <Preference android:title="@string/pref_title_system_sync_settings">
18 <intent android:action="android.settings.SYNC_SETTINGS" />