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

73 lines
2.5 KiB
XML
Raw Normal View History

<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"
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.ReaderColorFilterView
android:id="@+id/color_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
<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" />
<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"
android:theme="?attr/actionBarTheme"
2016-06-27 16:46:31 +02:00
android:visibility="invisible"
tools:visibility="visible">
<com.google.android.material.appbar.MaterialToolbar
2016-06-27 16:46:31 +02:00
android:id="@+id/toolbar"
android:layout_width="match_parent"
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"
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>
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" />
</FrameLayout>