layout_lfile_emptyview.xml 860 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<?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:background="@color/lfile_white">


    <ImageView
        android:layout_width="120dp"
        android:layout_height="120dp"
        android:layout_above="@id/tv_empty"
        android:layout_centerHorizontal="true"
        android:background="@mipmap/lfile_emptyimg" />

    <TextView
        android:id="@+id/tv_empty"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:gravity="center"
        android:padding="12dp"
        android:text="暂无数据"
        android:textColor="@color/lfile_gray"
        android:textSize="18sp" />
</RelativeLayout>