| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/mainLay"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@color/EFEFEF"
- android:orientation="vertical" >
-
- <RelativeLayout
- android:id="@+id/framelogread"
- 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>
- <RelativeLayout
- android:id="@+id/listlay"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/title" >
- <!--
- <ListView
- android:id="@+id/listview"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="#f0f0f0" />
- -->
- <com.dongkesoft.ibossmini.utils.XListViewNew
- android:id="@+id/listview"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:cacheColorHint="#00000000"
- android:divider="@null"
- android:focusable="true"
- android:listSelector="@drawable/list_null" >
- </com.dongkesoft.ibossmini.utils.XListViewNew>
- </RelativeLayout>
- </RelativeLayout>
|