2023-05-27 04:52:00 +02:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-06-27 16:46:31 +02:00
|
|
|
android:layout_width="match_parent"
|
2023-05-27 04:52:00 +02: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 14:09:36 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:descendantFocusability="blocksDescendants" />
|
2016-06-27 16:46:31 +02:00
|
|
|
|
2023-05-03 22:18:25 +02: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 22:18:25 +02: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-20 20:36:01 +01:00
|
|
|
<eu.kanade.tachiyomi.ui.reader.ReaderNavigationOverlayView
|
|
|
|
|
android:id="@+id/navigation_overlay"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2021-08-23 01:25:40 +02:00
|
|
|
android:clickable="false"
|
2021-08-15 16:42:45 +02:00
|
|
|
android:focusable="false"
|
2021-03-20 20:36:01 +01:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
2023-06-24 05:17:47 +02:00
|
|
|
<androidx.compose.ui.platform.ComposeView
|
|
|
|
|
android:id="@+id/dialog_root"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
2023-05-27 04:52:00 +02:00
|
|
|
</FrameLayout>
|