| 123456789101112131415161718192021222324 |
- <?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">
- <ImageView
- android:id="@+id/empty_img"
- android:layout_width="50dp"
- android:layout_height="60dp"
- android:layout_centerInParent="true"
- android:src="@drawable/location_empty"
- android:paddingBottom="10dp"/>
- <TextView
- android:id="@+id/messageTv"
- android:layout_marginTop="10dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="30dp"
- android:layout_marginRight="30dp"
- android:layout_below="@id/empty_img"
- android:layout_centerHorizontal="true"
- android:text="@string/not_find_company_search" />
- </RelativeLayout>
|