123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center">
- <FrameLayout
- android:id="@+id/reader_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <FrameLayout
- android:id="@+id/viewer_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- <ProgressBar
- android:id="@+id/please_wait"
- android:layout_width="56dp"
- android:layout_height="56dp"
- android:layout_gravity="center"
- android:visibility="gone"
- tools:visibility="visible" />
- <eu.kanade.tachiyomi.ui.reader.PageIndicatorTextView
- android:id="@+id/page_number"
- style="@style/TextAppearance.Regular.Caption"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom|center_horizontal"
- android:padding="4dp"
- android:textStyle="bold" />
- </FrameLayout>
- <eu.kanade.tachiyomi.ui.reader.ReaderColorFilterView
- android:id="@+id/color_overlay"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone" />
- <FrameLayout
- android:id="@+id/reader_menu"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:theme="?attr/actionBarTheme"
- android:visibility="invisible"
- tools:visibility="visible">
- <com.google.android.material.appbar.MaterialToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- android:background="?colorPrimary" />
- <LinearLayout
- android:id="@+id/reader_menu_bottom"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- android:layout_gravity="bottom"
- android:background="?colorPrimary"
- android:descendantFocusability="blocksDescendants"
- android:gravity="center"
- android:orientation="horizontal">
- <ImageButton
- android:id="@+id/left_chapter"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="?selectableItemBackgroundBorderless"
- android:contentDescription="@string/action_previous_chapter"
- android:padding="@dimen/material_layout_keylines_screen_edge_margin"
- app:srcCompat="@drawable/ic_skip_previous_white_24dp" />
- <TextView
- android:id="@+id/left_page_text"
- android:layout_width="32dp"
- android:layout_height="match_parent"
- android:gravity="center"
- android:textSize="15sp"
- tools:text="1" />
- <!--
- Wonky way of setting height due to issues with horizontally centering the thumb in Android 5.
- See https://stackoverflow.com/questions/15701767/android-thumb-is-not-centered-in-seekbar
- -->
- <eu.kanade.tachiyomi.ui.reader.ReaderSeekBar
- android:id="@+id/page_seekbar"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:maxHeight="?attr/actionBarSize"
- android:minHeight="?attr/actionBarSize" />
- <TextView
- android:id="@+id/right_page_text"
- android:layout_width="32dp"
- android:layout_height="match_parent"
- android:gravity="center"
- android:textSize="15sp"
- tools:text="15" />
- <ImageButton
- android:id="@+id/right_chapter"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="?selectableItemBackgroundBorderless"
- android:contentDescription="@string/action_next_chapter"
- android:padding="@dimen/material_layout_keylines_screen_edge_margin"
- app:srcCompat="@drawable/ic_skip_next_white_24dp" />
- </LinearLayout>
- </FrameLayout>
- <View
- android:id="@+id/brightness_overlay"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone" />
- </FrameLayout>
|