| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?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"
- tools:context=".ui.first.InoculationRegistActivity">
- <com.hjq.bar.TitleBar
- android:id="@+id/tb_registicl_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:title="@string/inoculation_regist_title" />
- <LinearLayout
- android:layout_marginLeft="9.6dp"
- android:layout_marginRight="9.6dp"
- android:layout_marginTop="11.6dp"
- android:background="@color/white"
- android:gravity="center_vertical"
- android:layout_width="match_parent"
- android:orientation="horizontal"
- android:layout_height="57.6dp">
- <ImageView
- android:src="@mipmap/iv_information_name"
- android:layout_marginLeft="11.8dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <TextView
- android:text="@string/personal_data_name"
- android:layout_marginLeft="10dp"
- android:textSize="15.3sp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <EditText
- android:id="@+id/registicl_et_name"
- android:background="@null"
- android:textSize="15.3sp"
- android:layout_marginLeft="50.5dp"
- android:hint="@string/personal_data_name_hint"
- android:layout_weight="1"
- android:layout_width="0dp"
- android:maxLength="10"
- android:maxLines="1"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <LinearLayout
- android:layout_marginLeft="9.6dp"
- android:layout_marginRight="9.6dp"
- android:layout_marginTop="11.6dp"
- android:background="@color/white"
- android:gravity="center_vertical"
- android:layout_width="match_parent"
- android:orientation="horizontal"
- android:layout_height="57.6dp">
- <ImageView
- android:src="@mipmap/iv_information_idcard"
- android:layout_marginLeft="11.8dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <TextView
- android:text="@string/personal_data_idnum"
- android:layout_marginLeft="10dp"
- android:textSize="15.3sp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <EditText
- android:id="@+id/registicl_et_code"
- android:background="@null"
- android:textSize="15.3sp"
- android:layout_marginLeft="20dp"
- android:hint="@string/personal_data_idnum_hint"
- android:layout_weight="1"
- android:layout_width="0dp"
- android:inputType="phone"
- android:maxLength="20"
- android:maxLines="1"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <LinearLayout
- android:layout_marginLeft="9.6dp"
- android:layout_marginRight="9.6dp"
- android:layout_marginTop="11.6dp"
- android:background="@color/white"
- android:gravity="center_vertical"
- android:layout_width="match_parent"
- android:orientation="horizontal"
- android:layout_height="57.6dp">
- <ImageView
- android:src="@mipmap/iv_phone_icon"
- android:layout_marginLeft="11.8dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <TextView
- android:text="@string/login_phone"
- android:layout_marginLeft="10dp"
- android:textSize="15.3sp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <EditText
- android:id="@+id/registicl_et_phone"
- android:background="@null"
- android:textSize="15.3sp"
- android:layout_marginLeft="35dp"
- android:hint="@string/login_phone_hint"
- android:layout_weight="1"
- android:layout_width="0dp"
- android:inputType="phone"
- android:maxLength="11"
- android:maxLines="1"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <LinearLayout
- android:layout_marginLeft="9.6dp"
- android:layout_marginRight="9.6dp"
- android:layout_marginTop="11.6dp"
- android:background="@color/white"
- android:gravity="center_vertical"
- android:layout_width="match_parent"
- android:orientation="horizontal"
- android:layout_height="57.6dp">
- <ImageView
- android:src="@mipmap/iv_information_email"
- android:layout_marginLeft="11.8dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <TextView
- android:text="@string/personal_data_email"
- android:layout_marginLeft="10dp"
- android:textSize="15.3sp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <EditText
- android:id="@+id/registicl_et_email"
- android:background="@null"
- android:textSize="15.3sp"
- android:layout_marginLeft="51.5dp"
- android:hint="@string/personal_data_email_hint"
- android:layout_weight="1"
- android:layout_width="0dp"
- android:maxLength="25"
- android:maxLines="1"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <Button
- android:id="@+id/registicl_btn_submitted"
- android:layout_width="282dp"
- android:layout_height="48dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="38.5dp"
- android:background="@drawable/selector_button"
- android:text="@string/inoculation_submitted"
- android:textColor="@color/white"
- android:textSize="15.3sp" />
- </LinearLayout>
|