|
|
@@ -0,0 +1,40 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<RelativeLayout android:id="@+id/rl_empty"
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/textViewMessage"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:drawableTop="@drawable/ic_empty"
|
|
|
+ android:gravity="center"
|
|
|
+ android:paddingLeft="26dp"
|
|
|
+ android:paddingRight="26dp"
|
|
|
+ android:text="当前企业没有任何相关询价单,请前往系统维护产品库"
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:textColor="@color/gray_light" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/buttonEmpty"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@+id/textViewMessage"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:text="@string/empty_button"
|
|
|
+ android:visibility="gone" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
+</RelativeLayout>
|