fragment_homework.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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. android:orientation="vertical">
  6. <TextView
  7. android:id="@+id/tv_date"
  8. android:layout_width="wrap_content"
  9. android:layout_height="@dimen/dp_50"
  10. android:layout_marginLeft="14dp"
  11. android:drawableRight="@drawable/icon_arrow_down"
  12. android:gravity="center"
  13. android:drawablePadding="@dimen/dp_6"
  14. android:text="2021年9月"
  15. android:textColor="@color/black_333"
  16. android:textSize="@dimen/sp_14" />
  17. <com.scwang.smart.refresh.layout.SmartRefreshLayout
  18. android:id="@+id/refreshLayout"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent">
  21. <androidx.recyclerview.widget.RecyclerView
  22. android:id="@+id/recyclerView"
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:overScrollMode="never"
  26. android:scrollbars="none" />
  27. </com.scwang.smart.refresh.layout.SmartRefreshLayout>
  28. </LinearLayout>