lmw
5 天以前 855a7e18a795f0db2453a19e3e8f26ba2ff553b4
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?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">
    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        android:background="@drawable/bg_white_8dp"
        android:layout_marginHorizontal="230dp"
        android:layout_marginTop="30dp">
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintTop_toTopOf="parent"
            android:id="@+id/et_name"
            android:paddingVertical="15dp"
            android:drawableEnd="@mipmap/more_grey"
            android:drawablePadding="20dp"
            android:gravity="end"
            android:layout_marginStart="100dp"
            android:singleLine="true"
            android:textColor="@color/textColor"
            android:textSize="14sp"
            android:textStyle="bold"
            android:background="@null"
            android:layout_marginEnd="19dp"
            android:hint="请输入收件人姓名"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintStart_toStartOf="parent"
            android:layout_marginStart="14dp"
            app:layout_constraintBaseline_toBaselineOf="@id/et_name"
            android:text="收件人姓名"
            android:textStyle="bold"
            android:textColor="@color/textColor"
            android:textSize="14sp"/>
        <View
            android:layout_width="match_parent"
            android:layout_height="1px"
            android:background="@color/dividing_line_color"
            app:layout_constraintTop_toBottomOf="@id/et_name"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintTop_toBottomOf="@id/et_name"
            android:id="@+id/et_phone"
            android:paddingVertical="15dp"
            android:drawableEnd="@mipmap/more_grey"
            android:drawablePadding="20dp"
            android:gravity="end"
            android:layout_marginStart="100dp"
            android:singleLine="true"
            android:textColor="@color/textColor"
            android:textSize="14sp"
            android:textStyle="bold"
            android:background="@null"
            android:inputType="number"
            android:maxLength="11"
            android:layout_marginEnd="19dp"
            android:hint="请输入收件人电话"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintStart_toStartOf="parent"
            android:layout_marginStart="14dp"
            app:layout_constraintBaseline_toBaselineOf="@id/et_phone"
            android:text="收件人电话"
            android:textStyle="bold"
            android:textColor="@color/textColor"
            android:textSize="14sp"/>
        <View
            android:layout_width="match_parent"
            android:layout_height="1px"
            android:background="@color/dividing_line_color"
            app:layout_constraintTop_toBottomOf="@id/et_phone"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintTop_toBottomOf="@id/et_phone"
            android:id="@+id/tv_city"
            android:paddingVertical="15dp"
            android:drawableEnd="@mipmap/more_grey"
            android:drawablePadding="20dp"
            android:gravity="end"
            android:layout_marginStart="100dp"
            android:singleLine="true"
            android:textColor="@color/textColor"
            android:textSize="14sp"
            android:textStyle="bold"
            android:layout_marginEnd="19dp"
            android:hint="请选择"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintStart_toStartOf="parent"
            android:layout_marginStart="14dp"
            app:layout_constraintBaseline_toBaselineOf="@id/tv_city"
            android:text="所在城市"
            android:textStyle="bold"
            android:textColor="@color/textColor"
            android:textSize="14sp"/>
        <View
            android:layout_width="match_parent"
            android:layout_height="1px"
            android:background="@color/dividing_line_color"
            app:layout_constraintTop_toBottomOf="@id/tv_city"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintTop_toBottomOf="@id/tv_city"
            android:id="@+id/et_address"
            android:paddingVertical="15dp"
            android:drawableEnd="@mipmap/more_grey"
            android:drawablePadding="20dp"
            android:gravity="end"
            android:layout_marginStart="100dp"
            android:singleLine="true"
            android:textColor="@color/textColor"
            android:textSize="14sp"
            android:textStyle="bold"
            android:background="@null"
            android:layout_marginEnd="19dp"
            android:hint="请输入"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintStart_toStartOf="parent"
            android:layout_marginStart="14dp"
            app:layout_constraintBaseline_toBaselineOf="@id/et_address"
            android:text="详细地址"
            android:textStyle="bold"
            android:textColor="@color/textColor"
            android:textSize="14sp"/>
        <View
            android:layout_width="match_parent"
            android:layout_height="1px"
            android:background="@color/dividing_line_color"
            app:layout_constraintTop_toBottomOf="@id/et_address"/>
        <CheckBox
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/cb_default"
            android:text="设为默认"
            app:layout_constraintTop_toBottomOf="@id/et_address"
            android:layout_marginTop="22dp"
            android:layout_marginStart="10dp"
            app:layout_constraintBottom_toBottomOf="parent"
            android:layout_marginBottom="120dp"
            android:button="@drawable/selector_check_radio"
            app:layout_constraintStart_toStartOf="parent"/>
    </androidx.constraintlayout.widget.ConstraintLayout>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tv_action"
        style="@style/style_btn_action"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_marginBottom="30dp"
        android:layout_marginHorizontal="350dp"
        android:text="保存"/>
</androidx.constraintlayout.widget.ConstraintLayout>