| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?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/white"
- android:fitsSystemWindows="true"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="35dp"
- android:layout_gravity="center_vertical"
- android:layout_marginBottom="10dp"
- android:layout_marginLeft="15dp"
- android:layout_marginTop="10dp"
- android:layout_weight="1"
- android:background="@drawable/rounded_corners_search_bg"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:text="唯一编码:"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_13" />
- <EditText
- android:id="@+id/edtOnlyCode"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:background="@null"
- android:hint="请输入或扫描唯一编码"
- android:imeOptions="actionGo"
- android:singleLine="true"
- android:textSize="@dimen/textsize_13" />
- </LinearLayout>
- <ImageView
- android:id="@+id/ivScan"
- android:layout_width="25dp"
- android:layout_height="25dp"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:src="@drawable/scan" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_no_data"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center_vertical"
- android:gravity="center"
- android:visibility="gone"
- 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:text="无数据"
- android:textSize="@dimen/textsize_22" />
- </LinearLayout>
-
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="10dp"
- android:background="@color/lightgray"
- android:orientation="vertical" />
-
- <LinearLayout
- android:id="@+id/ll_filter_zero_can_sales_quantity"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:visibility="gone"
- android:layout_marginTop="5dp"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:orientation="horizontal">
- <CheckBox
- android:id="@+id/ck_filter_zero_can_sales_quantity"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:button="@drawable/checkbox"
- android:checked="false"
- android:focusable="false"
- android:focusableInTouchMode="false"
- android:gravity="center" />
- <TextView
- android:id="@+id/tv_zero_can_sales_quantity"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/tv_layout_margin_10"
- android:text="过滤零可售量"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
-
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_marginTop="5dp"
- android:layout_height="10dp"
- android:background="@color/lightgray"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="3dp"
- android:layout_gravity="center_vertical"
- android:background="@color/white"
- android:orientation="vertical" >
- <ListView
- android:id="@+id/orderList"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:cacheColorHint="@null"
- android:divider="@color/lightgray"
- android:layout_marginBottom="10dp"
- android:dividerHeight="10dp"
- android:scrollbars="vertical" />
- </LinearLayout>
- </LinearLayout>
|