2015-11-03 20:04:07 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-03-07 23:48:43 +01:00
|
|
|
<android.support.v7.preference.PreferenceScreen
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2015-11-03 20:04:07 +01:00
|
|
|
|
2015-12-08 19:39:57 +01:00
|
|
|
<Preference
|
2016-03-21 22:30:30 +01:00
|
|
|
android:key="@string/pref_download_directory_key"
|
|
|
|
android:title="@string/pref_download_directory"/>
|
2015-12-08 19:39:57 +01:00
|
|
|
|
2016-03-07 23:48:43 +01:00
|
|
|
<SwitchPreferenceCompat
|
2016-03-21 22:30:30 +01:00
|
|
|
android:defaultValue="true"
|
2016-01-13 22:31:12 +01:00
|
|
|
android:key="@string/pref_download_only_over_wifi_key"
|
2016-03-21 22:30:30 +01:00
|
|
|
android:title="@string/pref_download_only_over_wifi"/>
|
2016-01-13 22:31:12 +01:00
|
|
|
|
2016-03-21 22:30:30 +01:00
|
|
|
<eu.kanade.tachiyomi.widget.preference.IntListPreference
|
|
|
|
android:defaultValue="1"
|
|
|
|
android:entries="@array/download_slots"
|
|
|
|
android:entryValues="@array/download_slots"
|
|
|
|
android:key="@string/pref_download_slots_key"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_download_slots"/>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/cat_remove_after_read"/>
|
2016-03-21 21:06:20 +01:00
|
|
|
<SwitchPreferenceCompat
|
2016-03-21 22:30:30 +01:00
|
|
|
android:defaultValue="false"
|
2016-03-21 21:06:20 +01:00
|
|
|
android:key="@string/pref_remove_after_marked_as_read_key"
|
2016-03-21 22:30:30 +01:00
|
|
|
android:title="@string/pref_remove_after_marked_as_read"/>
|
2016-03-21 21:06:20 +01:00
|
|
|
|
2016-03-21 22:30:30 +01:00
|
|
|
<SwitchPreferenceCompat
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/pref_remove_after_read_key"
|
|
|
|
android:summary="@string/current_chapter"
|
|
|
|
android:title="@string/pref_remove_after_read"/>
|
2016-03-21 21:06:20 +01:00
|
|
|
|
2016-03-21 22:30:30 +01:00
|
|
|
<SwitchPreferenceCompat
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:dependency="@string/pref_remove_after_read_key"
|
|
|
|
android:key="@string/pref_remove_after_read_previous_key"
|
|
|
|
android:summary="@string/previous_chapter"
|
|
|
|
android:title="@string/pref_remove_after_read"/>
|
2015-11-04 10:51:49 +01:00
|
|
|
|
2016-03-07 23:48:43 +01:00
|
|
|
</android.support.v7.preference.PreferenceScreen>
|