lmw
2023-05-12 f67802a41f9e01444d1115f34ecc6e1beb05fc3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?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">
    <TextView
        android:id="@+id/tv_action"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/style_tv_action"
        android:text="确定"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_marginBottom="14dp"/>
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/et_name"
        android:hint="请输入姓名"
        app:layout_constraintTop_toTopOf="parent"
        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"/>
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tv_sex"
        android:hint="请选择性别"
        style="@style/style_form_text_setting"
        android:drawableEnd="@mipmap/icon_more_grey"
        android:layout_marginStart="110dp"
        android:layout_marginEnd="14dp"
        android:inputType="number"
        android:background="@null"
        app:layout_constraintTop_toBottomOf="@id/et_name"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBaseline_toBaselineOf="@id/tv_sex"
        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/tv_sex"
        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/tv_sex"
        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"/>
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/et_id_card"
        android:hint="请输入身份证号"
        style="@style/style_form_text_setting"
        android:layout_marginStart="110dp"
        android:digits="@string/idCard"
        android:background="@null"
        app:layout_constraintTop_toBottomOf="@id/et_phone"
        android:maxLength="18" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBaseline_toBaselineOf="@id/et_id_card"
        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_id_card"
        android:layout_marginEnd="14dp"/>
</androidx.constraintlayout.widget.ConstraintLayout>