mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-05 02:39:23 +02:00
52 lines
1.4 KiB
XML
52 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="9dip"
|
|
android:paddingRight="9dip"
|
|
>
|
|
<TextView
|
|
android:id="@+id/book_position_text"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:singleLine="true"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:ellipsize="end"
|
|
android:paddingTop="4px"
|
|
/>
|
|
<SeekBar
|
|
android:id="@+id/book_position_slider"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="4px"
|
|
/>
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:weightSum="1.0"
|
|
android:layout_below="@id/book_position_slider"
|
|
android:layout_alignParentBottom="true"
|
|
android:paddingTop="4px"
|
|
>
|
|
<Button
|
|
android:id="@android:id/button1"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.45"
|
|
/>
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.1"
|
|
/>
|
|
<Button
|
|
android:id="@android:id/button3"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.45"
|
|
/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|