pref_data_sync.xml 951 B

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