2023-05-26 22:52:00 -04:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-06-27 16:46:31 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2023-05-26 22:52:00 -04:00
|
|
|
android:layout_height="match_parent">
|
2015-10-21 00:04:04 +02:00
|
|
|
|
2015-10-24 16:04:42 +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"
|
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"
|
2021-10-01 19:09:36 +07:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:descendantFocusability="blocksDescendants" />
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2023-05-03 16:18:25 -04:00
|
|
|
<androidx.compose.ui.platform.ComposeView
|
2016-06-27 16:46:31 +02:00
|
|
|
android:id="@+id/page_number"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2023-05-03 16:18:25 -04:00
|
|
|
android:layout_gravity="bottom|center_horizontal" />
|
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
|
|
|
|
2021-03-25 23:10:22 -04:00
|
|
|
<eu.kanade.tachiyomi.ui.reader.ReaderColorFilterView
|
2020-02-23 00:07:34 -05:00
|
|
|
android:id="@+id/color_overlay"
|
|
|
|
android:layout_width="match_parent"
|
2021-03-20 20:36:01 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<eu.kanade.tachiyomi.ui.reader.ReaderNavigationOverlayView
|
|
|
|
android:id="@+id/navigation_overlay"
|
|
|
|
android:layout_width="match_parent"
|
2020-02-23 00:07:34 -05:00
|
|
|
android:layout_height="match_parent"
|
2021-08-22 19:25:40 -04:00
|
|
|
android:clickable="false"
|
2021-08-15 10:42:45 -04:00
|
|
|
android:focusable="false"
|
2020-02-23 00:07:34 -05:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
2023-06-24 12:56:45 -04:00
|
|
|
<View
|
|
|
|
android:id="@+id/brightness_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"
|
2018-09-01 17:12:59 +02:00
|
|
|
android:theme="?attr/actionBarTheme"
|
2016-06-27 16:46:31 +02:00
|
|
|
android:visibility="invisible"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
2020-03-12 19:14:43 -04:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2016-06-27 16:46:31 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
2021-04-14 08:59:23 -04:00
|
|
|
android:layout_height="wrap_content"
|
2021-05-22 12:02:49 -04:00
|
|
|
android:minHeight="?attr/actionBarSize" />
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2023-08-04 18:05:02 -04:00
|
|
|
<androidx.compose.ui.platform.ComposeView
|
2016-06-27 16:46:31 +02:00
|
|
|
android:id="@+id/reader_menu_bottom"
|
|
|
|
android:layout_width="match_parent"
|
2021-02-13 10:47:17 -05:00
|
|
|
android:layout_height="wrap_content"
|
2023-08-04 18:05:02 -04:00
|
|
|
android:layout_gravity="bottom" />
|
2016-06-27 16:46:31 +02:00
|
|
|
|
|
|
|
</FrameLayout>
|
2015-11-18 21:54:33 +01:00
|
|
|
|
2023-06-23 23:17:47 -04:00
|
|
|
<androidx.compose.ui.platform.ComposeView
|
|
|
|
android:id="@+id/dialog_root"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2023-05-26 22:52:00 -04:00
|
|
|
</FrameLayout>
|