tachiyomi/app/src/main/res/xml/pref_reader.xml

26 lines
1.0 KiB
XML
Raw Normal View History

2015-10-21 19:27:22 +02:00
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBoxPreference android:title="@string/pref_hide_status_bar"
android:key="@string/pref_hide_status_bar_key"
2015-10-29 13:46:10 +01:00
android:defaultValue="true" />
2015-10-21 19:27:22 +02:00
<CheckBoxPreference android:title="@string/pref_lock_orientation"
android:key="@string/pref_lock_orientation_key"
android:defaultValue="true" />
2015-11-21 02:27:34 +01:00
<CheckBoxPreference android:title="@string/pref_enable_transitions"
android:key="@string/pref_enable_transitions_key"
android:defaultValue="true" />
<CheckBoxPreference android:title="@string/pref_show_page_number"
android:key="@string/pref_show_page_number_key"
android:defaultValue="true" />
<ListPreference android:title="@string/pref_viewer_type"
2015-10-26 01:55:36 +01:00
android:key="@string/pref_default_viewer_key"
android:entries="@array/viewers"
android:entryValues="@array/viewers_values"
android:defaultValue="1"/>
2015-10-21 19:27:22 +02:00
</PreferenceScreen>