123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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">
- <CheckBox
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/enable_transitions"
- style="@style/grey_text"
- android:text="@string/pref_enable_transitions"/>
- <CheckBox
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/show_page_number"
- style="@style/grey_text"
- android:text="@string/pref_show_page_number"/>
- <CheckBox
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/hide_status_bar"
- style="@style/grey_text"
- android:text="@string/pref_hide_status_bar"/>
- <CheckBox
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/keep_screen_on"
- style="@style/grey_text"
- android:text="Keep screen on"/>
- </LinearLayout>
|