<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/white"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="50dp"
|
android:layout_marginRight="50dp"
|
android:src="@mipmap/ic_no_more" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:text="没有数据"
|
android:textColor="@color/choose_grey" />
|
|
|
</LinearLayout>
|
</layout>
|