2015-12-27 14:58:36 +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-12-27 14:58:36 +01:00
|
|
|
|
2016-04-13 16:42:59 +02:00
|
|
|
<eu.kanade.tachiyomi.widget.preference.IntListPreference
|
|
|
|
android:defaultValue="1"
|
|
|
|
android:entries="@array/themes"
|
|
|
|
android:entryValues="@array/themes_values"
|
|
|
|
android:key="@string/pref_theme_key"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_theme"/>
|
|
|
|
|
2016-03-07 23:48:43 +01:00
|
|
|
<eu.kanade.tachiyomi.widget.preference.SimpleDialogPreference
|
2016-04-13 14:08:07 +02:00
|
|
|
android:dialogLayout="@layout/pref_library_columns"
|
2015-12-27 14:58:36 +01:00
|
|
|
android:key="@string/pref_library_columns_dialog_key"
|
|
|
|
android:persistent="false"
|
2016-04-13 14:08:07 +02:00
|
|
|
android:title="@string/pref_library_columns"/>
|
2015-12-27 14:58:36 +01:00
|
|
|
|
2016-01-15 15:18:19 +01:00
|
|
|
<eu.kanade.tachiyomi.widget.preference.IntListPreference
|
2016-04-13 14:08:07 +02:00
|
|
|
android:defaultValue="0"
|
2016-01-10 17:47:43 +01:00
|
|
|
android:entries="@array/library_update_interval"
|
|
|
|
android:entryValues="@array/library_update_interval_values"
|
2016-04-13 14:08:07 +02:00
|
|
|
android:key="@string/pref_library_update_interval_key"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_library_update_interval"/>
|
2016-01-10 17:47:43 +01:00
|
|
|
|
2016-04-18 00:20:58 +02:00
|
|
|
<MultiSelectListPreference
|
|
|
|
android:entries="@array/library_update_restrictions"
|
|
|
|
android:entryValues="@array/library_update_restrictions_values"
|
|
|
|
android:key="@string/pref_library_update_restriction_key"
|
|
|
|
android:summary="@string/pref_library_update_restriction_summary"
|
|
|
|
android:title="@string/pref_library_update_restriction" />
|
|
|
|
|
2016-03-07 23:48:43 +01:00
|
|
|
<SwitchPreferenceCompat
|
2016-04-13 14:08:07 +02:00
|
|
|
android:defaultValue="false"
|
2016-01-10 17:47:43 +01:00
|
|
|
android:key="@string/pref_update_only_non_completed_key"
|
2016-04-13 14:08:07 +02:00
|
|
|
android:title="@string/pref_update_only_non_completed"/>
|
|
|
|
|
2016-03-07 23:48:43 +01:00
|
|
|
</android.support.v7.preference.PreferenceScreen>
|