fragment_school_begins.xml 1.0 KB

1234567891011121314151617181920212223242526
  1. <com.scwang.smart.refresh.layout.SmartRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:id="@+id/refreshLayout"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/white"
  8. android:gravity="center"
  9. android:orientation="vertical">
  10. <com.scwang.smart.refresh.header.ClassicsHeader
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content" />
  13. <androidx.recyclerview.widget.RecyclerView
  14. android:id="@+id/rv"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. tools:itemCount="5"
  18. tools:listitem="@layout/item_school_begins_fm" />
  19. <com.scwang.smart.refresh.footer.ClassicsFooter
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content" />
  22. </com.scwang.smart.refresh.layout.SmartRefreshLayout>