24 lines
934 B
XML
24 lines
934 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_emptyview_layout"
|
|
android:layout_width="@dimen/varyViewHelper_empty_imgWidth"
|
|
android:layout_height="@dimen/varyViewHelper_empty_imgHeight"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="@dimen/PX300x"/>
|
|
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/iv_emptyview_layout"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="@dimen/PX15x"
|
|
android:text="该界面暂无数据"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="@dimen/SP26x" />
|
|
</RelativeLayout> |