pref_advanced.xml 864 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.v7.preference.PreferenceScreen
  3. xmlns:android="http://schemas.android.com/apk/res/android">
  4. <Preference
  5. android:key="@string/pref_clear_chapter_cache_key"
  6. android:title="@string/pref_clear_chapter_cache"/>
  7. <Preference
  8. android:key="@string/pref_clear_cookies_key"
  9. android:title="@string/pref_clear_cookies"/>
  10. <Preference
  11. android:key="@string/pref_clear_database_key"
  12. android:summary="@string/pref_clear_database_summary"
  13. android:title="@string/pref_clear_database"/>
  14. <SwitchPreferenceCompat
  15. android:defaultValue="false"
  16. android:key="@string/pref_reencode_key"
  17. android:summary="@string/pref_reencode_summary"
  18. android:title="@string/pref_reencode"/>
  19. </android.support.v7.preference.PreferenceScreen>