127 lines
5.1 KiB
Plaintext
127 lines
5.1 KiB
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/book_pop"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:fitsSystemWindows="true"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<!-- <LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/rl_progress"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="bottom|center_horizontal"
|
||
|
android:layout_marginBottom="20dp"
|
||
|
android:background="@color/black"
|
||
|
android:padding="20dp"
|
||
|
android:visibility="gone">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_progress"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:text="00.00%"
|
||
|
android:textColor="@color/white"
|
||
|
android:textSize="16sp" />
|
||
|
</RelativeLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/bookpop_bottom"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@color/read_dialog_bg"
|
||
|
android:baselineAligned="false"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="70dp"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_pre"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/read_setting_pre"
|
||
|
android:textAlignment="center"
|
||
|
android:textColor="@color/white"
|
||
|
android:textSize="16sp" />
|
||
|
|
||
|
<SeekBar
|
||
|
android:id="@+id/sb_progress"
|
||
|
android:layout_width="150dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center"
|
||
|
android:max="10000"
|
||
|
android:visibility="invisible"></SeekBar>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_next"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/read_setting_next"
|
||
|
android:textAlignment="center"
|
||
|
android:textColor="@color/white"
|
||
|
android:textSize="16sp" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_directory"
|
||
|
style="@style/text_style"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:gravity="center"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="10dp"
|
||
|
android:paddingBottom="5dp"
|
||
|
android:text="@string/read_setting_directory" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_dayornight"
|
||
|
style="@style/text_style"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:gravity="center"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="10dp"
|
||
|
android:paddingBottom="5dp"
|
||
|
android:text="@string/read_setting_night" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_setting"
|
||
|
style="@style/text_style"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:gravity="center"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="10dp"
|
||
|
android:paddingBottom="5dp"
|
||
|
android:text="@string/read_setting_set" />
|
||
|
</RelativeLayout>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>-->
|
||
|
</RelativeLayout>
|