| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:paddingTop="10dp"
- android:orientation="vertical">
- <com.hjq.bar.TitleBar
- android:id="@+id/tb_test_a_bar"
- android:layout_width="match_parent"
- android:layout_height="?android:attr/actionBarSize"
- android:layout_marginTop="10dp"
- app:backButton="false"
- app:barStyle="transparent"
- app:layout_collapseMode="pin">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal">
- <LinearLayout
- android:layout_width="290dp"
- android:layout_height="32dp"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="15dp"
- android:background="@drawable/bg_home_search_bar_transparent"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="17.5dp"
- android:src="@mipmap/iv_search_logo" />
- <EditText
- android:id="@+id/tv_report_search"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="9dp"
- android:background="@null"
- android:hint="请输入姓名/身份证/ID号"
- android:textColorHint="#a4a4a4"
- android:textSize="14sp" />
- </LinearLayout>
- <TextView
- android:id="@+id/tv_report_gosearch"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginLeft="10dp"
- android:gravity="center_vertical"
- android:text="搜索"
- android:textColor="#1C92FE"
- android:textSize="14sp" />
- </LinearLayout>
- </com.hjq.bar.TitleBar>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="19dp"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tv_vn_name"
- android:layout_width="0dp"
- android:layout_height="30sp"
- android:layout_marginRight="5dp"
- android:layout_weight="1"
- android:background="@drawable/bg_home_search_bar_transparent"
- android:drawableRight="@mipmap/iv_arrowdown_icon"
- android:gravity="center_vertical"
- android:hint="疫苗名称"
- android:text="全部"
- android:paddingLeft="20dp"
- android:paddingRight="13dp"
- android:textColorHint="@color/black"
- android:textSize="14sp" />
- <TextView
- android:id="@+id/tv_vn_status"
- android:layout_width="0dp"
- android:layout_height="30sp"
- android:layout_weight="1"
- android:background="@drawable/bg_home_search_bar_transparent"
- android:drawableRight="@mipmap/iv_arrowdown_icon"
- android:gravity="center_vertical"
- android:hint="状态"
- android:text="全部"
- android:paddingLeft="20dp"
- android:paddingRight="13dp"
- android:textColorHint="@color/black"
- android:textSize="14sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="10dp"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tv_vn_begintime"
- android:layout_width="0dp"
- android:layout_height="30sp"
- android:layout_marginRight="5dp"
- android:layout_weight="1"
- android:background="@drawable/bg_home_search_bar_transparent"
- android:drawableRight="@mipmap/iv_arrowdown_icon"
- android:gravity="center_vertical"
- android:hint="起始时间"
- android:paddingLeft="20dp"
- android:paddingRight="13dp"
- android:textColorHint="@color/black"
- android:textSize="14sp" />
- <TextView
- android:id="@+id/tv_vn_endtime"
- android:layout_width="0dp"
- android:layout_height="30sp"
- android:layout_weight="1"
- android:background="@drawable/bg_home_search_bar_transparent"
- android:drawableRight="@mipmap/iv_arrowdown_icon"
- android:gravity="center_vertical"
- android:hint="截止时间"
- android:paddingLeft="20dp"
- android:paddingRight="13dp"
- android:textColorHint="@color/black"
- android:textSize="14sp" />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- <android.support.v7.widget.RecyclerView
- android:id="@+id/rl_reportvn"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- </android.support.v7.widget.RecyclerView>
- </LinearLayout>
|