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

38 lines
1.3 KiB
XML
Raw Normal View History

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2016-06-27 16:46:31 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
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"
android:descendantFocusability="blocksDescendants" />
2016-06-27 16:46:31 +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"
android:layout_gravity="bottom|center_horizontal" />
2016-06-27 16:46:31 +02:00
</FrameLayout>
2015-10-21 00:04:04 +02:00
<eu.kanade.tachiyomi.ui.reader.ReaderNavigationOverlayView
android:id="@+id/navigation_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="false"
android:focusable="false"
android:visibility="gone" />
<androidx.compose.ui.platform.ComposeView
android:id="@+id/dialog_root"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>