preferences.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
  2. <PreferenceCategory
  3. android:title="@string/preferences_sync">
  4. <CheckBoxPreference
  5. android:key="preference_key_sync"
  6. android:title="@string/preferences_sync_sync"
  7. android:summary="@string/preferences_sync_sync_on"
  8. android:defaultValue="true" />
  9. <CheckBoxPreference
  10. android:key="preference_key_notification"
  11. android:title="@string/preferences_sync_notifications"
  12. android:summary="@string/preferences_sync_notifications_on"
  13. android:defaultValue="true" />
  14. </PreferenceCategory>
  15. <PreferenceCategory
  16. android:title="@string/preferences_info">
  17. <Preference
  18. android:key="preference_key_version"
  19. android:title="@string/preferences_info_version"
  20. android:summary="_" />
  21. <Preference
  22. android:key="preference_key_source"
  23. android:title="@string/preferences_info_source"
  24. android:summary="@string/preferences_info_source_summary" />
  25. <Preference
  26. android:key="preference_key_feedback"
  27. android:title="@string/preferences_info_feedback"
  28. android:summary="@string/preferences_info_feedback_summary" />
  29. </PreferenceCategory>
  30. </PreferenceScreen>