activity_reader.xml 763 B

1234567891011121314151617181920212223
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:gravity="center">
  5. <FrameLayout
  6. android:id="@+id/reader"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent">
  9. </FrameLayout>
  10. <TextView
  11. android:id="@+id/page_number"
  12. style="@style/TextAppearance.Regular.Caption"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_gravity="bottom|start"
  16. android:background="?android:attr/colorBackground"
  17. android:padding="4dp"/>
  18. <include layout="@layout/reader_menu"/>
  19. </FrameLayout>