activity_log_list.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/white"
  6. android:orientation="vertical" >
  7. <include layout="@layout/fragment_title" />
  8. <FrameLayout
  9. android:id="@+id/framelog"
  10. android:layout_width="fill_parent"
  11. android:layout_height="fill_parent"
  12. android:visibility="gone" >
  13. <TextView
  14. android:layout_width="fill_parent"
  15. android:layout_height="fill_parent"
  16. android:gravity="center"
  17. android:text="无数据"
  18. android:textSize="@dimen/textsize_50" />
  19. </FrameLayout>
  20. <!--
  21. <ListView
  22. android:id="@+id/log_listview"
  23. android:layout_width="fill_parent"
  24. android:layout_height="fill_parent"
  25. android:divider="@color/textcolor_hui"
  26. android:dividerHeight="0.5dp"
  27. android:visibility="visible"
  28. android:fastScrollEnabled="true"
  29. android:focusable="true">
  30. </ListView>
  31. -->
  32. <com.dongkesoft.ibossmini.utils.XListViewNew
  33. android:id="@+id/log_listview"
  34. android:layout_width="fill_parent"
  35. android:layout_height="fill_parent"
  36. android:cacheColorHint="#00000000"
  37. android:divider="@null"
  38. android:fastScrollEnabled="true"
  39. android:focusable="true"
  40. android:listSelector="@drawable/list_null"
  41. android:visibility="visible" >
  42. </com.dongkesoft.ibossmini.utils.XListViewNew>
  43. </LinearLayout>