activity_order.xml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="#fff"
  6. android:id="@+id/layout_content"
  7. android:fitsSystemWindows="true" >
  8. <RelativeLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:background="#9fff" >
  12. <include
  13. android:id="@+id/ll_title"
  14. layout="@layout/fragment_title" />
  15. <LinearLayout
  16. android:id="@+id/ll_search"
  17. android:layout_width="match_parent"
  18. android:layout_height="35dp"
  19. android:layout_below="@id/ll_title"
  20. android:layout_gravity="center_vertical"
  21. android:layout_marginBottom="10dp"
  22. android:layout_marginLeft="15dp"
  23. android:layout_marginRight="15dp"
  24. android:layout_marginTop="10dp"
  25. android:background="@drawable/rounded_corners_search_bg"
  26. android:gravity="center"
  27. android:orientation="horizontal" >
  28. <ImageView
  29. android:id="@+id/ivSearch"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:background="@drawable/ss1"
  33. android:visibility="gone" />
  34. <TextView
  35. android:id="@+id/tvSearch"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:text="搜索" />
  39. </LinearLayout>
  40. <View style="@style/wide_fill_line"
  41. android:id="@+id/line"
  42. android:layout_below="@+id/ll_search"
  43. />
  44. <com.dongkesoft.ibossmini.utils.XListViewNew
  45. android:id="@+id/report_listview"
  46. android:layout_width="fill_parent"
  47. android:layout_height="wrap_content"
  48. android:layout_above="@id/ll_bottom"
  49. android:layout_below="@id/line"
  50. android:background="@color/white"
  51. android:cacheColorHint="#00000000"
  52. android:divider="@color/lightgray"
  53. android:dividerHeight="0dp"
  54. android:fastScrollEnabled="true"
  55. android:focusable="true"
  56. android:listSelector="@drawable/list_null"
  57. android:visibility="visible" >
  58. </com.dongkesoft.ibossmini.utils.XListViewNew>
  59. <LinearLayout
  60. android:id="@+id/ll_no_data"
  61. android:layout_width="match_parent"
  62. android:layout_height="match_parent"
  63. android:layout_gravity="center_vertical"
  64. android:gravity="center"
  65. android:orientation="vertical"
  66. android:visibility="gone" >
  67. <ImageView
  68. android:layout_width="64dp"
  69. android:layout_height="64dp"
  70. android:background="@drawable/icon_no_data" />
  71. <TextView
  72. android:layout_width="wrap_content"
  73. android:layout_height="wrap_content"
  74. android:text="无数据"
  75. android:textSize="@dimen/textsize_22" />
  76. </LinearLayout>
  77. </RelativeLayout>
  78. <com.dongkesoft.ibossmini.view.GenericDrawerLayout
  79. android:id="@+id/filing_list_activity_drawerlayout"
  80. android:layout_width="match_parent"
  81. android:layout_height="match_parent" />
  82. </FrameLayout>