| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/layout_content"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#fff" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#9fff" >
- <View
- android:id="@+id/line1"
- android:layout_marginTop="3dp"
- style="@style/wide_fill_line" />
- <LinearLayout
- android:id="@+id/ll_add"
- android:layout_width="match_parent"
- android:layout_height="35dp"
- android:layout_below="@+id/line1"
- android:layout_gravity="center_vertical"
- android:layout_marginBottom="10dp"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_marginTop="10dp"
- android:background="@drawable/rounded_corners_search_bg"
- android:gravity="center"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/ivSearch"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/ss1"
- android:visibility="gone" />
- <TextView
- android:id="@+id/tvSearch"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="新增商品" />
- </LinearLayout>
- <View
- android:id="@+id/line"
- style="@style/wide_fill_line"
- android:layout_below="@+id/ll_add" />
- <ListView
- android:id="@+id/listview"
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:layout_above="@id/ll_bottom"
- android:layout_below="@id/line"
- android:background="@color/white"
- android:cacheColorHint="#00000000"
- android:descendantFocusability="beforeDescendants"
- android:divider="@color/lightgray"
- android:dividerHeight="0dp"
- android:listSelector="@drawable/list_null"
- android:transcriptMode="normal"
- android:visibility="visible" >
- </ListView>
- <LinearLayout
- android:id="@+id/ll_no_data"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@id/report_listview"
- android:layout_gravity="center_vertical"
- android:gravity="center"
- android:orientation="vertical"
- android:visibility="gone" >
- <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>
- </RelativeLayout>
- </FrameLayout>
|