| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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:orientation="vertical" >
- <include layout="@layout/fragment_title" />
- <FrameLayout
- android:id="@+id/framelog"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:visibility="gone" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center"
- android:text="无数据"
- android:textSize="@dimen/textsize_50" />
- </FrameLayout>
- <!--
- <ListView
- android:id="@+id/log_listview"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:divider="@color/textcolor_hui"
- android:dividerHeight="0.5dp"
- android:visibility="visible"
- android:fastScrollEnabled="true"
- android:focusable="true">
- </ListView>
- -->
- <com.dongkesoft.ibossmini.utils.XListViewNew
- android:id="@+id/log_listview"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:cacheColorHint="#00000000"
- android:divider="@null"
- android:fastScrollEnabled="true"
- android:focusable="true"
- android:listSelector="@drawable/list_null"
- android:visibility="visible" >
- </com.dongkesoft.ibossmini.utils.XListViewNew>
- </LinearLayout>
|