mihon/app/src/main/res/layout/reader_activity.xml

130 lines
5.1 KiB
XML
Raw Normal View History

<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2016-06-27 16:46:31 +02:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
2015-10-21 00:04:04 +02:00
<FrameLayout
2016-06-27 16:46:31 +02:00
android:id="@+id/reader_container"
2015-10-21 00:04:04 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2016-06-27 16:46:31 +02:00
<FrameLayout
android:id="@+id/viewer_container"
2016-06-27 16:46:31 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent" />
2016-06-27 16:46:31 +02:00
<com.google.android.material.progressindicator.CircularProgressIndicator
2016-06-27 16:46:31 +02:00
android:id="@+id/please_wait"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminate="true"
android:visibility="gone"
app:indicatorSize="56dp"
tools:visibility="visible" />
2016-06-27 16:46:31 +02:00
<eu.kanade.tachiyomi.ui.reader.PageIndicatorTextView
2016-06-27 16:46:31 +02:00
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:textDirection="ltr"
android:textStyle="bold" />
2016-06-27 16:46:31 +02:00
</FrameLayout>
2015-10-21 00:04:04 +02:00
<eu.kanade.tachiyomi.ui.reader.ReaderColorFilterView
android:id="@+id/color_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
2016-06-27 16:46:31 +02:00
<FrameLayout
android:id="@+id/reader_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:theme="?attr/actionBarTheme"
2016-06-27 16:46:31 +02:00
android:visibility="invisible"
tools:visibility="visible">
<com.google.android.material.appbar.MaterialToolbar
2016-06-27 16:46:31 +02:00
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
2020-03-14 18:18:34 +01:00
android:background="?attr/colorPrimary" />
2016-06-27 16:46:31 +02:00
<LinearLayout
android:id="@+id/reader_menu_bottom"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="bottom"
2020-03-14 18:18:34 +01:00
android:background="?attr/colorPrimary"
android:descendantFocusability="blocksDescendants"
android:gravity="center"
android:layoutDirection="ltr"
android:orientation="horizontal">
2016-06-27 16:46:31 +02:00
<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"
2020-03-15 21:46:38 +01:00
app:srcCompat="@drawable/ic_skip_previous_24dp"
app:tint="?attr/colorOnPrimary" />
2016-06-27 16:46:31 +02:00
<TextView
android:id="@+id/left_page_text"
android:layout_width="32dp"
android:layout_height="match_parent"
2016-06-27 16:46:31 +02:00
android:gravity="center"
android:textSize="15sp"
tools:text="1" />
2016-06-27 16:46:31 +02:00
<!--
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
2016-06-27 16:46:31 +02:00
android:id="@+id/page_seekbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
2020-02-22 00:43:50 +01:00
android:layout_weight="1"
android:maxHeight="?attr/actionBarSize"
2020-02-22 00:43:50 +01:00
android:minHeight="?attr/actionBarSize" />
2016-06-27 16:46:31 +02:00
<TextView
android:id="@+id/right_page_text"
android:layout_width="32dp"
android:layout_height="match_parent"
2016-06-27 16:46:31 +02:00
android:gravity="center"
android:textSize="15sp"
tools:text="15" />
2016-06-27 16:46:31 +02:00
<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"
2020-03-15 21:46:38 +01:00
app:srcCompat="@drawable/ic_skip_next_24dp"
app:tint="?attr/colorOnPrimary" />
2016-06-27 16:46:31 +02:00
</LinearLayout>
</FrameLayout>
<View
android:id="@+id/brightness_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>