| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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" >
- <include layout="@layout/fragment_title" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="#FFFFFF"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/data_scroll"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="10dp"
- android:textColor="@color/black"
- android:textSize="15dp"
- android:textStyle="bold" />
- <com.dongkesoft.ibossmini.view.TwoWayView
- android:id="@+id/list"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:drawSelectorOnTop="false"
- android:listSelector="@android:color/transparent"
- android:orientation="horizontal"
- android:scrollbars="vertical" />
- </LinearLayout>
- <View
- style="@style/wide_fill_line" >
- </View>
- <ListView
- android:id="@+id/lv_result"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:cacheColorHint="#00000000"
- android:divider="@null"
- android:fastScrollEnabled="true"
- android:focusable="true"
- android:listSelector="@drawable/list_null"
- android:visibility="gone" >
- </ListView>
- <RelativeLayout
- android:id="@+id/rl_nodata"
- 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>
- </LinearLayout>
|