31 lines
877 B
XML
31 lines
877 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerInParent="true"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:translationY="-80dp"
|
|
>
|
|
|
|
|
|
<ImageView
|
|
android:layout_width="54dp"
|
|
android:layout_height="54dp"
|
|
android:src="@mipmap/icon_data_empty"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/search_no_data_2"
|
|
android:textColor="@color/gray3"
|
|
android:textSize="14sp"
|
|
/>
|
|
|
|
</LinearLayout> |