mihon/app/src/main/res/xml/pref_downloads.xml

22 lines
857 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2016-03-07 17:48:43 -05:00
<android.support.v7.preference.PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<Preference
android:title="@string/pref_download_directory"
android:key="@string/pref_download_directory_key"/>
2016-03-07 17:48:43 -05:00
<SwitchPreferenceCompat
android:title="@string/pref_download_only_over_wifi"
android:key="@string/pref_download_only_over_wifi_key"
android:defaultValue="true"/>
2016-01-15 09:18:19 -05:00
<eu.kanade.tachiyomi.widget.preference.IntListPreference
android:title="@string/pref_download_slots"
android:key="@string/pref_download_slots_key"
android:entries="@array/download_slots"
android:entryValues="@array/download_slots"
android:defaultValue="1"
android:summary="%s"/>
2016-03-07 17:48:43 -05:00
</android.support.v7.preference.PreferenceScreen>