<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:focusable="true"
|
android:focusableInTouchMode="true"
|
android:background="@color/white">
|
<EditText
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/et_name"
|
android:hint="填写姓名"
|
style="@style/style_form_text_setting"
|
android:layout_marginStart="110dp"
|
android:inputType="text"
|
android:background="@null"
|
/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintBaseline_toBaselineOf="@id/et_name"
|
android:text="姓名"
|
style="@style/style_common_text"
|
android:layout_marginStart="14dp"
|
app:layout_constraintStart_toStartOf="parent"/>
|
<View style="@style/style_form_divider_line"
|
android:layout_marginStart="14dp"
|
app:layout_constraintTop_toBottomOf="@id/et_name"
|
android:layout_marginEnd="14dp"/>
|
<EditText
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/et_phone"
|
android:hint="请填写联系电话"
|
style="@style/style_form_text_setting"
|
android:layout_marginStart="110dp"
|
android:inputType="number"
|
android:background="@null"
|
app:layout_constraintTop_toBottomOf="@id/et_name"
|
android:maxLength="11" />
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintBaseline_toBaselineOf="@id/et_phone"
|
android:text="联系电话"
|
style="@style/style_common_text"
|
android:layout_marginStart="14dp"
|
app:layout_constraintStart_toStartOf="parent"/>
|
<View style="@style/style_form_divider_line"
|
android:layout_marginStart="14dp"
|
app:layout_constraintTop_toBottomOf="@id/et_phone"
|
android:layout_marginEnd="14dp"/>
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_action"
|
app:layout_constraintTop_toBottomOf="@id/et_phone"
|
style="@style/style_tv_action"
|
android:layout_marginTop="80dp"
|
android:text="添加"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|