reader_activity.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent">
  4. <FrameLayout
  5. android:id="@+id/reader_container"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8. <FrameLayout
  9. android:id="@+id/viewer_container"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:descendantFocusability="blocksDescendants" />
  13. <androidx.compose.ui.platform.ComposeView
  14. android:id="@+id/page_number"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_gravity="bottom|center_horizontal" />
  18. </FrameLayout>
  19. <eu.kanade.tachiyomi.ui.reader.ReaderColorFilterView
  20. android:id="@+id/color_overlay"
  21. android:layout_width="match_parent"
  22. android:layout_height="match_parent"
  23. android:visibility="gone" />
  24. <eu.kanade.tachiyomi.ui.reader.ReaderNavigationOverlayView
  25. android:id="@+id/navigation_overlay"
  26. android:layout_width="match_parent"
  27. android:layout_height="match_parent"
  28. android:clickable="false"
  29. android:focusable="false"
  30. android:visibility="gone" />
  31. <View
  32. android:id="@+id/brightness_overlay"
  33. android:layout_width="match_parent"
  34. android:layout_height="match_parent"
  35. android:visibility="gone" />
  36. <androidx.compose.ui.platform.ComposeView
  37. android:id="@+id/dialog_root"
  38. android:layout_width="match_parent"
  39. android:layout_height="match_parent" />
  40. </FrameLayout>