You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default_pagination_view_layout.xml 1.1KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:gravity="center">
  6. <TextView
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:id="@+id/previousPageView"
  10. android:textAppearance="?android:attr/textAppearanceLarge"
  11. android:layout_margin="2dp"
  12. android:text=" &lt; "/>
  13. <LinearLayout
  14. android:id="@+id/pagesLayout"
  15. android:layout_width="wrap_content"
  16. android:layout_height="match_parent"
  17. android:layout_gravity="center_horizontal"
  18. android:orientation="horizontal">
  19. </LinearLayout>
  20. <TextView
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:id="@+id/nextPageView"
  24. android:textAppearance="?android:attr/textAppearanceLarge"
  25. android:layout_margin="2dp"
  26. android:text=" &gt; "/>
  27. </LinearLayout>