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.

view_pagination_fragment_layout.xml 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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="match_parent"
  5. xmlns:app="http://schemas.android.com/apk/res-auto"
  6. android:orientation="vertical">
  7. <!-- Loading progress -->
  8. <LinearLayout
  9. android:id="@+id/loadStatus"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:layout_gravity="center"
  13. android:gravity="center_horizontal"
  14. android:orientation="vertical"
  15. android:visibility="gone">
  16. <ProgressBar
  17. style="?android:attr/progressBarStyleLarge"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_marginBottom="8dp"/>
  21. </LinearLayout>
  22. <!-- Layout -->
  23. <ScrollView
  24. android:id="@+id/mainScrollView"
  25. android:layout_width="match_parent"
  26. android:layout_height="0dp"
  27. android:layout_weight="0.33">
  28. <RelativeLayout
  29. android:layout_width="match_parent"
  30. android:layout_height="wrap_content">
  31. <LinearLayout
  32. android:id="@+id/itemsLayoutScrollView"
  33. android:layout_width="match_parent"
  34. android:layout_height="match_parent"
  35. android:orientation="vertical">
  36. </LinearLayout>
  37. <com.luticate.utils.ui.views.DefaultPaginationView
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:layout_below="@+id/itemsLayoutScrollView"
  41. android:id="@+id/paginationView"/>
  42. </RelativeLayout>
  43. </ScrollView>
  44. </LinearLayout>