996603a7458d85fddaf46583ff68edde03af8e5a.svn-base 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:orientation="vertical"
  6. android:background="@color/white"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent">
  9. <com.hjq.bar.TitleBar
  10. android:id="@+id/tb_test_a_bar"
  11. android:layout_width="match_parent"
  12. android:layout_height="?android:attr/actionBarSize"
  13. android:layout_marginTop="10dp"
  14. app:backButton="false"
  15. app:barStyle="transparent"
  16. app:layout_collapseMode="pin">
  17. <LinearLayout
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:orientation="horizontal">
  21. <LinearLayout
  22. android:layout_width="290dp"
  23. android:layout_height="32dp"
  24. android:layout_gravity="center_vertical"
  25. android:layout_marginLeft="15dp"
  26. android:background="@drawable/bg_home_search_bar_transparent"
  27. android:orientation="horizontal">
  28. <ImageView
  29. android:layout_width="20dp"
  30. android:layout_height="20dp"
  31. android:layout_gravity="center_vertical"
  32. android:layout_marginLeft="17.5dp"
  33. android:src="@mipmap/iv_search_logo" />
  34. <EditText
  35. android:id="@+id/tv_report_search"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:layout_gravity="center_vertical"
  39. android:layout_marginLeft="9dp"
  40. android:background="@null"
  41. android:hint="请输入姓名/身份证/ID号"
  42. android:textColorHint="#a4a4a4"
  43. android:textSize="14sp" />
  44. </LinearLayout>
  45. <TextView
  46. android:id="@+id/tv_report_gosearch"
  47. android:layout_width="wrap_content"
  48. android:layout_height="match_parent"
  49. android:layout_marginLeft="10dp"
  50. android:gravity="center_vertical"
  51. android:text="搜索"
  52. android:textColor="#1C92FE"
  53. android:textSize="14sp" />
  54. </LinearLayout>
  55. </com.hjq.bar.TitleBar>
  56. <LinearLayout
  57. android:orientation="vertical"
  58. android:layout_marginLeft="15dp"
  59. android:layout_marginRight="19dp"
  60. android:layout_width="match_parent"
  61. android:layout_height="wrap_content">
  62. <LinearLayout
  63. android:orientation="horizontal"
  64. android:layout_width="match_parent"
  65. android:layout_height="wrap_content">
  66. <TextView
  67. android:paddingLeft="20dp"
  68. android:gravity="center_vertical"
  69. android:id="@+id/tv_vn_name"
  70. android:textSize="14sp"
  71. android:layout_weight="1"
  72. android:layout_width="0dp"
  73. android:layout_height="32sp"
  74. android:background="@drawable/bg_home_search_bar_transparent"
  75. android:layout_marginRight="5dp"
  76. android:textColorHint="@color/black"
  77. android:hint="疫苗名称" />
  78. <TextView
  79. android:paddingLeft="20dp"
  80. android:gravity="center_vertical"
  81. android:textSize="14sp"
  82. android:id="@+id/tv_vn_status"
  83. android:layout_weight="1"
  84. android:layout_width="0dp"
  85. android:layout_height="32sp"
  86. android:background="@drawable/bg_home_search_bar_transparent"
  87. android:textColorHint="@color/black"
  88. android:hint="状态"
  89. />
  90. </LinearLayout>
  91. <LinearLayout
  92. android:layout_marginTop="10dp"
  93. android:orientation="horizontal"
  94. android:layout_width="match_parent"
  95. android:layout_height="wrap_content">
  96. <TextView
  97. android:paddingLeft="20dp"
  98. android:gravity="center_vertical"
  99. android:textSize="14sp"
  100. android:id="@+id/tv_vn_begintime"
  101. android:layout_weight="1"
  102. android:layout_width="0dp"
  103. android:layout_height="32sp"
  104. android:layout_marginRight="5dp"
  105. android:textColorHint="@color/black"
  106. android:background="@drawable/bg_home_search_bar_transparent"
  107. android:hint="起始时间" />
  108. <TextView
  109. android:paddingLeft="20dp"
  110. android:gravity="center_vertical"
  111. android:textSize="14sp"
  112. android:id="@+id/tv_vn_endtime"
  113. android:layout_weight="1"
  114. android:layout_width="0dp"
  115. android:layout_height="32sp"
  116. android:textColorHint="@color/black"
  117. android:background="@drawable/bg_home_search_bar_transparent"
  118. android:hint="截止时间" />
  119. </LinearLayout>
  120. </LinearLayout>
  121. <android.support.v7.widget.RecyclerView
  122. android:id="@+id/rl_reportvn"
  123. android:layout_width="match_parent"
  124. android:layout_height="wrap_content">
  125. </android.support.v7.widget.RecyclerView>
  126. </LinearLayout>