avtivity_log.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/mainLay"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:background="@color/EFEFEF"
  7. android:orientation="vertical" >
  8. <RelativeLayout
  9. android:id="@+id/framelogread"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:background="@color/white"
  13. android:visibility="gone" >
  14. <LinearLayout
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_centerInParent="true"
  18. android:orientation="vertical" >
  19. <ImageView
  20. android:layout_width="64dp"
  21. android:layout_height="64dp"
  22. android:background="@drawable/icon_no_data" />
  23. <TextView
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_gravity="center"
  27. android:layout_marginTop="10dp"
  28. android:text="无数据"
  29. android:textSize="@dimen/textsize_22" />
  30. </LinearLayout>
  31. </RelativeLayout>
  32. <RelativeLayout
  33. android:id="@+id/listlay"
  34. android:layout_width="fill_parent"
  35. android:layout_height="wrap_content"
  36. android:layout_below="@id/title" >
  37. <!--
  38. <ListView
  39. android:id="@+id/listview"
  40. android:layout_width="fill_parent"
  41. android:layout_height="wrap_content"
  42. android:background="#f0f0f0" />
  43. -->
  44. <com.dongkesoft.ibossmini.utils.XListViewNew
  45. android:id="@+id/listview"
  46. android:layout_width="fill_parent"
  47. android:layout_height="wrap_content"
  48. android:background="@color/white"
  49. android:cacheColorHint="#00000000"
  50. android:divider="@null"
  51. android:focusable="true"
  52. android:listSelector="@drawable/list_null" >
  53. </com.dongkesoft.ibossmini.utils.XListViewNew>
  54. </RelativeLayout>
  55. </RelativeLayout>