2020-05-03 18:38:00 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-06-27 16:46:31 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-04-22 19:31:02 +02:00
|
|
|
android:id="@+id/reader_layout"
|
2016-06-27 16:46:31 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center">
|
2015-10-21 00:04:04 +02:00
|
|
|
|
2020-05-06 00:19:30 +02:00
|
|
|
|
2015-10-24 16:04:42 +02:00
|
|
|
<FrameLayout
|
2020-05-06 00:19:30 +02:00
|
|
|
android:id="@+id/viewer_container"
|
2015-10-21 00:04:04 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-05-06 00:19:30 +02:00
|
|
|
android:layout_height="match_parent" />
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2020-05-06 00:19:30 +02:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/please_wait"
|
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2020-05-06 00:19:30 +02:00
|
|
|
<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" />
|
2015-10-21 00:04:04 +02:00
|
|
|
|
2020-05-03 18:38:00 +02:00
|
|
|
<eu.kanade.tachiyomi.ui.reader.ReaderColorFilterView
|
|
|
|
android:id="@+id/color_overlay"
|
2016-06-27 16:46:31 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-03 18:38:00 +02:00
|
|
|
android:visibility="gone" />
|
2021-03-25 01:13:14 +01:00
|
|
|
|
|
|
|
<eu.kanade.tachiyomi.ui.reader.ReaderNavigationOverlayView
|
|
|
|
android:id="@+id/navigation_overlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="gone" />
|
2020-04-22 19:31:02 +02:00
|
|
|
|
2020-05-23 03:28:47 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/reader_menu"
|
2020-05-04 21:00:00 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-05-27 03:34:44 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="gone" >
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2020-05-23 03:28:47 +02:00
|
|
|
<FrameLayout
|
2021-03-29 08:35:01 +02:00
|
|
|
android:id="@+id/app_bar"
|
2020-05-04 21:00:00 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-05-23 03:28:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/colorSecondary">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
2021-03-28 01:32:42 +01:00
|
|
|
android:background="@drawable/reader_toolbar_ripple" />
|
2020-04-19 23:57:35 +02:00
|
|
|
|
2020-05-23 03:28:47 +02:00
|
|
|
</FrameLayout>
|
|
|
|
</FrameLayout>
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2021-03-29 08:35:01 +02:00
|
|
|
<include layout="@layout/reader_chapters_sheet"
|
|
|
|
android:id="@+id/reader_chapters_sheet"/>
|
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
|
|
|
|
2020-05-03 18:38:00 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|