2015-10-21 00:04:04 +02:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-12 04:13:46 +01:00
|
|
|
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"
|
2020-03-03 21:37:28 +01:00
|
|
|
android:id="@+id/reader_layout"
|
2016-06-27 16:46:31 +02:00
|
|
|
android:gravity="center">
|
2015-10-21 00:04:04 +02:00
|
|
|
|
2015-10-24 16:04:42 +02:00
|
|
|
<FrameLayout
|
2015-10-21 00:04:04 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-11-18 21:54:33 +01:00
|
|
|
android:layout_height="match_parent">
|
2016-06-27 16:46:31 +02:00
|
|
|
|
|
|
|
<FrameLayout
|
2018-09-01 17:12:59 +02:00
|
|
|
android:id="@+id/viewer_container"
|
2016-06-27 16:46:31 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-01-12 04:13:46 +01:00
|
|
|
android:layout_height="match_parent" />
|
2016-06-27 16:46:31 +02:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/please_wait"
|
2018-09-01 17:12:59 +02:00
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="gone"
|
2020-01-12 04:13:46 +01:00
|
|
|
tools:visibility="visible" />
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2017-11-18 14:09:28 +01: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"
|
2017-11-18 14:09:28 +01:00
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
android:padding="4dp"
|
2017-11-20 13:55:50 +01:00
|
|
|
android:textStyle="bold" />
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2015-10-24 16:04:42 +02:00
|
|
|
</FrameLayout>
|
2015-10-21 00:04:04 +02:00
|
|
|
|
2020-04-15 05:56:50 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2016-06-27 16:46:31 +02:00
|
|
|
android:id="@+id/reader_menu"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-04-19 23:28:59 +02:00
|
|
|
android:background="@android:color/transparent"
|
2016-06-27 16:46:31 +02:00
|
|
|
android:visibility="invisible"
|
|
|
|
tools:visibility="visible">
|
2020-04-19 23:57:35 +02:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="?attr/actionBarTheme"
|
|
|
|
android:background="?attr/colorSecondary"
|
|
|
|
android:stateListAnimator="@null"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2016-06-27 16:46:31 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
2020-04-19 23:57:35 +02:00
|
|
|
android:background="@android:color/transparent" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2020-04-15 05:56:50 +02:00
|
|
|
<include layout="@layout/reader_chapters_sheet"/>
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2020-04-15 05:56:50 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2015-11-18 21:54:33 +01:00
|
|
|
|
2016-07-07 23:18:22 +02:00
|
|
|
<View
|
|
|
|
android:id="@+id/brightness_overlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-01-12 04:13:46 +01:00
|
|
|
android:visibility="gone" />
|
2016-07-07 23:18:22 +02:00
|
|
|
|
2019-04-29 19:32:49 +02:00
|
|
|
<eu.kanade.tachiyomi.ui.reader.ReaderColorFilterView
|
2016-09-21 21:26:08 +02:00
|
|
|
android:id="@+id/color_overlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-01-12 04:13:46 +01:00
|
|
|
android:visibility="gone" />
|
2016-09-21 21:26:08 +02:00
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
</FrameLayout>
|