confide_empty_layout.xml 1.17 KB
Newer Older
1 2 3 4
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="@color/white"
5
    android:layout_height="wrap_content">
6 7 8

    <LinearLayout
        android:id="@+id/empty_rl"
9 10 11
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
12
        android:gravity="center_horizontal"
13
        android:layout_marginTop="100dp"
14 15 16 17 18 19 20
        android:orientation="vertical"
        >

        <ImageView
            android:id="@+id/empty_img"
            android:layout_width="180dp"
            android:layout_height="120dp"
21
            android:src="@drawable/platform_ico_img_zixun_empty" />
22 23 24 25 26 27 28 29 30 31

        <TextView
            android:id="@+id/hint_msg"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/platform_dp_35"
            android:text="没有搜到相关信息,换个关键词看看吧"
            android:textColor="@color/platform_color_999999"
            android:textSize="14dp" />

32

33 34 35 36
    </LinearLayout>


</RelativeLayout>