| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/EFEFEF"
- android:orientation="vertical" >
- <include layout="@layout/fragment_title" />
- <RelativeLayout
- android:id="@+id/framestockcheck"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:visibility="gone" >
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="vertical" >
- <ImageView
- android:layout_width="64dp"
- android:layout_height="64dp"
- android:background="@drawable/icon_no_data" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_marginTop="10dp"
- android:text="无数据"
- android:textSize="@dimen/textsize_22" />
- </LinearLayout>
- </RelativeLayout>
- <com.dongkesoft.ibossmini.utils.XListView
- android:id="@+id/listview_stock_check"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@color/white"
- android:cacheColorHint="#00000000"
- android:divider="@null"
- android:fastScrollEnabled="true"
- android:focusable="true"
- android:listSelector="@drawable/list_null"
- android:visibility="visible" >
- </com.dongkesoft.ibossmini.utils.XListView>
- </LinearLayout>
|