mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
39 lines
1.3 KiB
XML
39 lines
1.3 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="#333333"
|
||
|
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>
|