empty_locayion.xml 882 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <ImageView
  6. android:id="@+id/empty_img"
  7. android:layout_width="50dp"
  8. android:layout_height="60dp"
  9. android:layout_centerInParent="true"
  10. android:src="@drawable/location_empty"
  11. android:paddingBottom="10dp"/>
  12. <TextView
  13. android:id="@+id/messageTv"
  14. android:layout_marginTop="10dp"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_marginLeft="30dp"
  18. android:layout_marginRight="30dp"
  19. android:layout_below="@id/empty_img"
  20. android:layout_centerHorizontal="true"
  21. android:text="@string/not_find_company_search" />
  22. </RelativeLayout>