2015-11-18 15:54:33 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-11-19 12:56:46 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-11-18 15:54:33 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:id="@+id/reader_menu"
|
2015-11-19 12:56:46 -05:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
2015-11-18 15:54:33 -05:00
|
|
|
|
|
|
|
<include layout="@layout/toolbar"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-11-18 22:58:29 -05:00
|
|
|
android:id="@+id/reader_menu_bottom"
|
2015-11-18 15:54:33 -05:00
|
|
|
android:background="@color/reader_menu_background"
|
2015-11-19 12:56:46 -05:00
|
|
|
android:orientation="vertical"
|
2015-11-18 15:54:33 -05:00
|
|
|
android:layout_alignParentBottom="true">
|
|
|
|
|
2015-11-19 12:56:46 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/current_page"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:textColor="@color/light_grey"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:layout_marginBottom="12dp" />
|
|
|
|
|
|
|
|
<SeekBar
|
|
|
|
android:id="@+id/page_seeker"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/total_pages"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:textColor="@color/light_grey"
|
|
|
|
android:gravity="center_horizontal" />
|
2015-11-18 15:54:33 -05:00
|
|
|
|
2015-11-19 12:56:46 -05:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View android:background="#777777"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2015-11-18 15:54:33 -05:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-19 12:56:46 -05:00
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp">
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:id="@+id/lock_orientation"
|
|
|
|
android:src="@drawable/ic_screen_rotation"
|
|
|
|
android:background="?android:selectableItemBackground" />
|
|
|
|
<ImageButton
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?android:selectableItemBackground" />
|
|
|
|
<ImageButton
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2015-11-20 20:27:34 -05:00
|
|
|
android:id="@+id/reader_selector"
|
|
|
|
android:src="@drawable/ic_view_carousel"
|
2015-11-19 12:56:46 -05:00
|
|
|
android:background="?android:selectableItemBackground" />
|
|
|
|
<ImageButton
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2015-11-20 20:27:34 -05:00
|
|
|
android:id="@+id/reader_extra_settings"
|
|
|
|
android:src="@drawable/ic_more_vert"
|
2015-11-19 12:56:46 -05:00
|
|
|
android:background="?android:selectableItemBackground" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2015-11-18 15:54:33 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|