manga_full_cover_dialog.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <com.google.android.material.appbar.AppBarLayout
  7. android:id="@+id/appbar"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. app:layout_constraintEnd_toEndOf="parent"
  11. app:layout_constraintStart_toStartOf="parent"
  12. app:layout_constraintTop_toTopOf="parent">
  13. <androidx.appcompat.widget.Toolbar
  14. android:id="@+id/toolbar"
  15. android:layout_width="match_parent"
  16. android:layout_height="?attr/actionBarSize"
  17. android:theme="?attr/actionBarTheme"
  18. app:contentInsetStartWithNavigation="0dp"
  19. app:menu="@menu/full_cover"
  20. app:navigationIcon="@drawable/ic_close_24dp" />
  21. </com.google.android.material.appbar.AppBarLayout>
  22. <eu.kanade.tachiyomi.ui.reader.viewer.ReaderPageImageView
  23. android:id="@+id/container"
  24. android:layout_width="0dp"
  25. android:layout_height="0dp"
  26. android:clipToPadding="false"
  27. android:clipChildren="false"
  28. app:layout_constraintBottom_toBottomOf="parent"
  29. app:layout_constraintEnd_toEndOf="parent"
  30. app:layout_constraintStart_toStartOf="parent"
  31. app:layout_constraintTop_toBottomOf="@+id/appbar" />
  32. </androidx.constraintlayout.widget.ConstraintLayout>