22 lines
684 B
XML
22 lines
684 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:id="@+id/emptyLinear"
|
||
|
|
android:layout_width="fill_parent"
|
||
|
|
android:layout_height="fill_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:layout_width="100dp"
|
||
|
|
android:layout_height="110dp"
|
||
|
|
android:background="@drawable/empty"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="30dp"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textSize="18dp"
|
||
|
|
android:text="暂无数据"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|