2015-11-20 20:27:34 -05:00
|
|
|
<?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"
|
2015-11-30 12:45:45 -05:00
|
|
|
android:background="@color/reader_menu_background"
|
2015-11-20 20:27:34 -05:00
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:paddingBottom="5dp">
|
|
|
|
|
2016-01-08 14:16:17 -05:00
|
|
|
<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"/>
|
|
|
|
|
2015-11-20 20:27:34 -05:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/enable_transitions"
|
2016-01-08 14:16:17 -05:00
|
|
|
style="@style/reader_menu_settings_item"
|
2015-11-20 20:27:34 -05:00
|
|
|
android:text="@string/pref_enable_transitions"/>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/show_page_number"
|
2016-01-08 14:16:17 -05:00
|
|
|
style="@style/reader_menu_settings_item"
|
2015-11-20 20:27:34 -05:00
|
|
|
android:text="@string/pref_show_page_number"/>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/hide_status_bar"
|
2016-01-08 14:16:17 -05:00
|
|
|
style="@style/reader_menu_settings_item"
|
2015-11-20 20:27:34 -05:00
|
|
|
android:text="@string/pref_hide_status_bar"/>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/keep_screen_on"
|
2016-01-08 14:16:17 -05:00
|
|
|
style="@style/reader_menu_settings_item"
|
2016-01-02 15:09:46 -05:00
|
|
|
android:text="@string/pref_keep_screen_on"/>
|
2015-11-20 20:27:34 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|