| 12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <TextView
- android:id="@+id/tv_date"
- android:layout_width="wrap_content"
- android:layout_height="@dimen/dp_50"
- android:layout_marginLeft="14dp"
- android:drawableRight="@drawable/icon_arrow_down"
- android:gravity="center"
- android:drawablePadding="@dimen/dp_6"
- android:text="2021年9月"
- android:textColor="@color/black_333"
- android:textSize="@dimen/sp_14" />
- <com.scwang.smart.refresh.layout.SmartRefreshLayout
- android:id="@+id/refreshLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/recyclerView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:overScrollMode="never"
- android:scrollbars="none" />
- </com.scwang.smart.refresh.layout.SmartRefreshLayout>
- </LinearLayout>
|