activity_reader.xml 753 B

12345678910111213141516171819202122
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:gravity="center"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <android.support.v4.view.ViewPager
  6. android:id="@+id/view_pager"
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content">
  9. </android.support.v4.view.ViewPager>
  10. <TextView
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:padding="8dp"
  14. android:layout_gravity="bottom|left"
  15. android:background="@color/bg_light_grey"
  16. android:textColor="@color/black_87pc"
  17. android:textSize="12sp"
  18. android:id="@+id/page_number"/>
  19. </FrameLayout>