<?xml version="1.0" encoding="utf-8"?>
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<com.xilada.xldutils.view.SwipeRefreshRecyclerLayout
|
android:id="@+id/mSwipeRefreshLayout"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/mRecyclerView"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"/>
|
|
<TextView
|
android:id="@+id/emptyView"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:text="暂无数据"
|
android:textColor="@color/textColor"
|
android:textSize="@dimen/buttonTextSize" />
|
</FrameLayout>
|