mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-12-22 21:30:41 +03:00
43 lines
No EOL
1.4 KiB
XML
43 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/reader_menu_background"
|
|
android:paddingRight="10dp"
|
|
android:paddingLeft="5dp"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp">
|
|
|
|
<TextView
|
|
android:id="@+id/reader_theme"
|
|
android:paddingLeft="32dp"
|
|
style="@style/reader_menu_settings_item"
|
|
android:text="@string/pref_reader_theme"/>
|
|
|
|
<TextView
|
|
android:id="@+id/image_decoder"
|
|
android:paddingLeft="32dp"
|
|
style="@style/reader_menu_settings_item"
|
|
android:text="@string/pref_image_decoder"/>
|
|
|
|
<CheckBox
|
|
android:id="@+id/enable_transitions"
|
|
style="@style/reader_menu_settings_item"
|
|
android:text="@string/pref_enable_transitions"/>
|
|
|
|
<CheckBox
|
|
android:id="@+id/show_page_number"
|
|
style="@style/reader_menu_settings_item"
|
|
android:text="@string/pref_show_page_number"/>
|
|
|
|
<CheckBox
|
|
android:id="@+id/hide_status_bar"
|
|
style="@style/reader_menu_settings_item"
|
|
android:text="@string/pref_hide_status_bar"/>
|
|
|
|
<CheckBox
|
|
android:id="@+id/keep_screen_on"
|
|
style="@style/reader_menu_settings_item"
|
|
android:text="@string/pref_keep_screen_on"/>
|
|
|
|
</LinearLayout> |