<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:id="@+id/root_layout"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/page_bg"
|
android:focusable="true"
|
android:focusableInTouchMode="true"
|
android:orientation="vertical">
|
<cn.sinata.xldutils.view.SwipeRefreshRecyclerLayout
|
android:id="@+id/swipeRefreshLayout"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_empty"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginTop="40dp"
|
android:textColor="@color/textColor"
|
android:textStyle="bold"
|
android:gravity="center"
|
android:drawablePadding="25dp"
|
android:drawableTop="@mipmap/empty"
|
android:textSize="12sp"
|
android:text="您还没有优惠券信息\n您可以和平台联系,建立合作哦~\n平台电话:"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|