mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-06 20:15:08 +01:00
39 lines
1.5 KiB
XML
39 lines
1.5 KiB
XML
<?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"
|
|
android:defaultValue="true" />
|
|
|
|
<CheckBoxPreference android:title="@string/pref_lock_orientation"
|
|
android:key="@string/pref_lock_orientation_key"
|
|
android:defaultValue="true" />
|
|
|
|
<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" />
|
|
|
|
<CheckBoxPreference android:title="@string/pref_custom_brightness"
|
|
android:key="@string/pref_custom_brightness_key"
|
|
android:defaultValue="false" />
|
|
|
|
<ListPreference android:title="@string/pref_viewer_type"
|
|
android:key="@string/pref_default_viewer_key"
|
|
android:entries="@array/viewers"
|
|
android:entryValues="@array/viewers_values"
|
|
android:defaultValue="1"
|
|
android:summary="%s"/>
|
|
|
|
<eu.kanade.mangafeed.ui.setting.preference.IntListPreference
|
|
android:title="@string/pref_reader_theme"
|
|
android:key="@string/pref_reader_theme_key"
|
|
android:entries="@array/reader_themes"
|
|
android:entryValues="@array/reader_themes_values"
|
|
android:defaultValue="0"
|
|
android:summary="%s"/>
|
|
|
|
</PreferenceScreen> |