activity_log_read.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. <include
  9. android:id="@+id/title"
  10. layout="@layout/fragment_title" />
  11. <FrameLayout
  12. android:id="@+id/framelogread"
  13. android:layout_width="fill_parent"
  14. android:layout_height="fill_parent"
  15. android:visibility="gone" >
  16. <TextView
  17. android:layout_width="fill_parent"
  18. android:layout_height="fill_parent"
  19. android:gravity="center"
  20. android:text="无数据"
  21. android:textSize="@dimen/textsize_50" />
  22. </FrameLayout>
  23. <RelativeLayout
  24. android:id="@+id/listlay"
  25. android:layout_width="fill_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_below="@id/title" >
  28. <!--
  29. <ListView
  30. android:id="@+id/listview"
  31. android:layout_width="fill_parent"
  32. android:layout_height="wrap_content"
  33. android:background="#f0f0f0" />
  34. -->
  35. <com.dongkesoft.ibossmini.utils.XListViewNew
  36. android:id="@+id/listview"
  37. android:layout_width="fill_parent"
  38. android:layout_height="wrap_content"
  39. android:background="@color/white"
  40. android:cacheColorHint="#00000000"
  41. android:divider="@null"
  42. android:fastScrollEnabled="true"
  43. android:focusable="true"
  44. android:listSelector="@drawable/list_null" >
  45. </com.dongkesoft.ibossmini.utils.XListViewNew>
  46. </RelativeLayout>
  47. <RelativeLayout
  48. android:id="@+id/pinglunLay"
  49. android:layout_width="fill_parent"
  50. android:layout_height="wrap_content"
  51. android:layout_alignParentBottom="true"
  52. android:background="@color/white"
  53. android:visibility="gone" >
  54. <LinearLayout
  55. android:layout_width="fill_parent"
  56. android:layout_height="wrap_content"
  57. android:layout_marginTop="5dp"
  58. android:orientation="horizontal" >
  59. <LinearLayout
  60. android:id="@+id/commentlay"
  61. android:layout_width="fill_parent"
  62. android:layout_height="50dp"
  63. android:layout_weight="1"
  64. android:orientation="vertical" >
  65. <EditText
  66. android:id="@+id/commenttxt"
  67. android:layout_width="fill_parent"
  68. android:layout_height="40dp"
  69. android:layout_marginLeft="10dp"
  70. android:background="@null"
  71. android:maxLength="200"
  72. android:textSize="@dimen/textsize_16" />
  73. <View
  74. android:layout_width="fill_parent"
  75. android:layout_height="1dp"
  76. android:layout_marginBottom="2dp"
  77. android:layout_marginLeft="15dp"
  78. android:background="@color/text_gray" />
  79. </LinearLayout>
  80. <Button
  81. android:id="@+id/sendBtn"
  82. android:layout_width="60dp"
  83. android:layout_height="40dp"
  84. android:layout_centerHorizontal="true"
  85. android:layout_centerVertical="true"
  86. android:layout_marginLeft="5dp"
  87. android:layout_marginRight="10dp"
  88. android:layout_toRightOf="@id/commentlay"
  89. android:background="@drawable/send_bt_bg_selector"
  90. android:text="发送"
  91. android:textSize="@dimen/textsize_16" />
  92. </LinearLayout>
  93. </RelativeLayout>
  94. </RelativeLayout>