summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/res/layout/fragment_comics_pager.xml
blob: 0694e90407928f442f77f2334823a1cfeb69d1f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/comics_pager_container"
    android:layout_width="fill_parent"
    android:animateLayoutChanges="true"
    android:layout_height="fill_parent" >

    <androidx.viewpager.widget.ViewPager
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/comics_pager"
        android:layout_alignParentBottom="true" />

    <TableLayout
        android:background="?colorButtonNormal"
        android:id="@+id/comics_bottom_bar"
        android:layout_width="match_parent"
        android:layout_height="32dp"
        android:layout_alignParentBottom="true">

        <TableRow
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <TextView
                android:id="@+id/comics_page"
                android:layout_width="60dp"
                android:layout_height="match_parent"
                android:layout_weight="0"
                android:gravity="center"
                android:singleLine="true"
                android:text="1"
                android:textAppearance="?android:attr/textAppearanceSmall"
                tools:ignore="HardcodedText" />

            <SeekBar
                android:id="@+id/comics_seek_bar"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:maxWidth="32dp"
                android:minHeight="32dp" />

            <TextView
                android:id="@+id/comics_total_pages"
                android:layout_width="60dp"
                android:layout_height="match_parent"
                android:layout_weight="0"
                android:gravity="center"
                android:singleLine="true"
                android:text="1123"
                android:textAppearance="?android:attr/textAppearanceSmall"
                tools:ignore="HardcodedText" />

        </TableRow>
    </TableLayout>



</RelativeLayout>