| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#fff"
- android:id="@+id/layout_content"
- android:fitsSystemWindows="true" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#9fff" >
- <include
- android:id="@+id/ll_title"
- layout="@layout/fragment_title" />
- <LinearLayout
- android:id="@+id/ll_search"
- android:layout_width="match_parent"
- android:layout_height="35dp"
- android:layout_below="@id/ll_title"
- 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 style="@style/wide_fill_line"
- android:id="@+id/line"
- android:layout_below="@+id/ll_search"
- />
- <com.dongkesoft.ibossmini.utils.XListViewNew
- android:id="@+id/report_listview"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_above="@id/ll_bottom"
- android:layout_below="@id/line"
- android:background="@color/white"
- android:cacheColorHint="#00000000"
- android:divider="@color/lightgray"
- android:dividerHeight="0dp"
- android:fastScrollEnabled="true"
- android:focusable="true"
- android:listSelector="@drawable/list_null"
- android:visibility="visible" >
- </com.dongkesoft.ibossmini.utils.XListViewNew>
- <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: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>
- <com.dongkesoft.ibossmini.view.GenericDrawerLayout
- android:id="@+id/filing_list_activity_drawerlayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </FrameLayout>
|