2021-08-29 04:53:59 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
2021-12-17 22:32:42 +08:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2021-08-29 04:53:59 +08:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:theme="?attr/actionBarTheme"
|
|
|
|
app:contentInsetStartWithNavigation="0dp"
|
|
|
|
app:menu="@menu/full_cover"
|
|
|
|
app:navigationIcon="@drawable/ic_close_24dp" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2021-09-12 06:28:54 +08:00
|
|
|
<eu.kanade.tachiyomi.ui.reader.viewer.ReaderPageImageView
|
|
|
|
android:id="@+id/container"
|
2021-08-29 04:53:59 +08:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2021-09-12 06:28:54 +08:00
|
|
|
android:clipToPadding="false"
|
|
|
|
android:clipChildren="false"
|
2021-08-29 04:53:59 +08:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/appbar" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|