fragment_no_started.xml 1011 B

12345678910111213141516171819202122232425
  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:orientation="vertical">
  9. <com.scwang.smart.refresh.header.ClassicsHeader
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content" />
  12. <androidx.recyclerview.widget.RecyclerView
  13. android:id="@+id/rv"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. tools:itemCount="2"
  17. tools:listitem="@layout/item_school_begins_fm_title" />
  18. <com.scwang.smart.refresh.footer.ClassicsFooter
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content" />
  21. </com.scwang.smart.refresh.layout.SmartRefreshLayout>