|
53
|
|
android:layout_marginTop="10dp"
|
|
54
|
|
android:layout_marginRight="28dp"
|
|
55
|
|
android:text="非常感谢,您的信息可以帮助到更多的充电用户"
|
|
56
|
|
android:textColor="#bcbcbc"
|
|
57
|
|
android:textSize="14sp"
|
|
58
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
59
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
60
|
|
app:layout_constraintTop_toBottomOf="@+id/first_msg" />
|
|
61
|
|
|
|
62
|
|
<TextView
|
|
63
|
|
android:layout_width="match_parent"
|
|
64
|
|
android:layout_height="wrap_content"
|
|
65
|
|
android:layout_marginBottom="10dp"
|
|
66
|
|
android:text="有任何疑问可以联系充电桩客服微信\nchongdianzhuang2"
|
|
67
|
|
android:textAlignment="center"
|
|
68
|
|
android:textColor="#a7a7a7"
|
|
69
|
|
android:textSize="12sp"
|
|
70
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
71
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
72
|
|
app:layout_constraintRight_toRightOf="parent" />
|
|
73
|
|
|
|
74
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
75
|
|
|
|
76
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
77
|
|
android:id="@+id/second"
|
|
78
|
|
android:layout_width="310dp"
|
|
79
|
|
android:layout_height="320dp"
|
|
80
|
|
android:visibility="gone"
|
|
81
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
82
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
83
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
84
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
85
|
|
|
|
86
|
|
<ImageView
|
|
87
|
|
android:layout_width="match_parent"
|
|
88
|
|
android:layout_height="match_parent"
|
|
89
|
|
android:src="@drawable/detail_parking_alert_second" />
|
|
90
|
|
|
|
91
|
|
<ImageView
|
|
92
|
|
android:id="@+id/second_close"
|
|
93
|
|
android:layout_width="wrap_content"
|
|
94
|
|
android:layout_height="wrap_content"
|
|
95
|
|
android:layout_marginTop="40dp"
|
|
96
|
|
android:padding="10dp"
|
|
97
|
|
android:src="@drawable/report_parking_close"
|
|
98
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
99
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
100
|
|
|
|
101
|
|
<TextView
|
|
102
|
|
android:id="@+id/second_msg"
|
|
103
|
|
android:layout_width="match_parent"
|
|
104
|
|
android:layout_height="wrap_content"
|
|
105
|
|
android:layout_marginLeft="28dp"
|
|
106
|
|
android:layout_marginTop="90dp"
|
|
107
|
|
android:layout_marginRight="28dp"
|
|
108
|
|
android:text="您上报的“有充电车位”信息,可以作为其他用户到此充电的重要参考依据,务必真实上报"
|
|
109
|
|
android:textColor="#222222"
|
|
110
|
|
android:textSize="14sp"
|
|
111
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
112
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
113
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
114
|
|
|
|
115
|
|
<TextView
|
|
116
|
|
android:id="@+id/second_desc"
|
|
117
|
|
android:layout_width="match_parent"
|
|
118
|
|
android:layout_height="wrap_content"
|
|
119
|
|
android:layout_marginLeft="28dp"
|
|
120
|
|
android:layout_marginTop="10dp"
|
|
121
|
|
android:layout_marginRight="28dp"
|
|
122
|
|
android:text="非常感谢,您的信息可以帮助到更多的充电用户"
|
|
123
|
|
android:textColor="#bcbcbc"
|
|
124
|
|
android:textSize="14sp"
|
|
125
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
126
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
127
|
|
app:layout_constraintTop_toBottomOf="@+id/second_msg" />
|
|
128
|
|
|
|
129
|
|
<LinearLayout
|
|
130
|
|
android:layout_width="match_parent"
|
|
131
|
|
android:layout_height="35dp"
|
|
132
|
|
android:layout_marginTop="20dp"
|
|
133
|
|
android:gravity="center"
|
|
134
|
|
app:layout_constraintTop_toBottomOf="@+id/second_desc">
|
|
135
|
|
|
|
136
|
|
<Button
|
|
137
|
|
android:id="@+id/cancel_report"
|
|
138
|
|
android:layout_width="100dp"
|
|
139
|
|
android:layout_height="match_parent"
|
|
140
|
|
android:background="@drawable/cancel_report_parking_shap"
|
|
141
|
|
android:text="取消上报"
|
|
142
|
|
android:textColor="#999999"
|
|
143
|
|
android:textSize="13sp" />
|
|
144
|
|
|
|
145
|
|
<Button
|
|
146
|
|
android:id="@+id/report"
|
|
147
|
|
android:layout_width="100dp"
|
|
148
|
|
android:layout_height="match_parent"
|
|
149
|
|
android:layout_marginLeft="10dp"
|
|
150
|
|
android:background="@drawable/report_parking_shape"
|
|
151
|
|
android:text="上报空停车位"
|
|
152
|
|
android:textColor="#ffffff"
|
|
153
|
|
android:textSize="13sp" />
|
|
154
|
|
|
|
155
|
|
</LinearLayout>
|
|
156
|
|
|
|
157
|
|
|
|
158
|
|
<TextView
|
|
159
|
|
android:layout_width="match_parent"
|
|
160
|
|
android:layout_height="wrap_content"
|
|
161
|
|
android:layout_marginBottom="10dp"
|
|
162
|
|
android:text="有任何疑问可以联系充电桩客服微信\nchongdianzhuang2"
|
|
163
|
|
android:textAlignment="center"
|
|
164
|
|
android:textColor="#a7a7a7"
|
|
165
|
|
android:textSize="12sp"
|
|
166
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
167
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
168
|
|
app:layout_constraintRight_toRightOf="parent" />
|
|
169
|
|
|
|
170
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
171
|
|
|
|
172
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
173
|
|
android:id="@+id/third"
|
|
174
|
|
android:layout_width="310dp"
|
|
175
|
|
android:layout_height="200dp"
|
|
176
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
177
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
178
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
179
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
180
|
|
|
|
181
|
|
<ImageView
|
|
182
|
|
android:layout_width="match_parent"
|
|
183
|
|
android:layout_height="match_parent"
|
|
184
|
|
android:src="@drawable/detail_parking_alert_third" />
|
|
185
|
|
|
|
186
|
|
<ImageView
|
|
187
|
|
android:id="@+id/third_close"
|
|
188
|
|
android:layout_width="wrap_content"
|
|
189
|
|
android:layout_height="wrap_content"
|
|
190
|
|
android:layout_marginTop="40dp"
|
|
191
|
|
android:padding="10dp"
|
|
192
|
|
android:src="@drawable/report_parking_close"
|
|
193
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
194
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
195
|
|
|
|
196
|
|
<TextView
|
|
197
|
|
android:id="@+id/third_msg"
|
|
198
|
|
android:layout_width="match_parent"
|
|
199
|
|
android:layout_height="wrap_content"
|
|
200
|
|
android:layout_marginLeft="28dp"
|
|
201
|
|
android:layout_marginTop="90dp"
|
|
202
|
|
android:layout_marginRight="28dp"
|
|
203
|
|
android:text="该充电站目前没有充电车位"
|
|
204
|
|
android:textColor="#222222"
|
|
205
|
|
android:textSize="14sp"
|
|
206
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
207
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
208
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
209
|
|
|
|
210
|
|
<TextView
|
|
211
|
|
android:layout_width="match_parent"
|
|
212
|
|
android:layout_height="wrap_content"
|
|
213
|
|
android:layout_marginBottom="10dp"
|
|
214
|
|
android:text="有任何疑问可以联系充电桩客服微信\nchongdianzhuang2"
|
|
215
|
|
android:textAlignment="center"
|
|
216
|
|
android:textColor="#a7a7a7"
|
|
217
|
|
android:textSize="12sp"
|
|
218
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
219
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
220
|
|
app:layout_constraintRight_toRightOf="parent" />
|
|
221
|
|
|
|
222
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
223
|
|
|
|
224
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|