lmw
2023-06-25 a988e7c15f5ce63785b77e01c89bec2565668982
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
 
    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:paddingBottom="60dp"
        android:clipToPadding="false"
        android:layout_height="match_parent"
        android:orientation="vertical">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">
 
            <TextView
                android:id="@+id/tv_none_info"
                android:layout_width="match_parent"
                android:visibility="gone"
                android:layout_height="wrap_content"
                android:background="#FF6666"
                android:paddingStart="14dp"
                android:paddingEnd="14dp"
                android:paddingTop="9dp"
                android:paddingBottom="9dp"
                android:text="这里是拒绝信息,这里是拒绝信息,这里是拒绝信息,这里是拒绝
信息,"
                android:textColor="#ffffffff"
                android:textSize="12sp"
                />
 
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
 
                <TextView
                    android:id="@+id/tv_name_car"
                    android:layout_toStartOf="@+id/tv_car_type"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="13dp"
                    android:layout_marginTop="9dp"
                    android:textColor="#ff111111"
                    android:textSize="14sp"
                    android:textStyle="bold"
                    tools:text="长安2016年款245四驱运动型" />
 
                <TextView
                    android:id="@+id/tv_car_type"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentEnd="true"
                    android:layout_marginStart="13dp"
                    android:layout_marginTop="11dp"
                    android:layout_marginEnd="12dp"
                    android:background="@drawable/bg_orange_2"
                    android:paddingStart="5dp"
                    android:paddingTop="1dp"
                    android:paddingEnd="5dp"
                    android:paddingBottom="1dp"
                    android:textColor="#fffa7c25"
                    android:textSize="10sp"
                    tools:text="非营运车辆" />
 
                <TextView
                    android:id="@+id/tv_car_money_more"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/tv_name_car"
                    android:layout_marginStart="12dp"
                    android:layout_marginTop="8dp"
                    android:textColor="#ffff3d3d"
                    android:textSize="18sp"
                    tools:text="9.85万" />
 
                <TextView
                    android:id="@+id/tv_money_hint"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignTop="@+id/tv_car_money_more"
                    android:layout_alignBottom="@+id/tv_car_money_more"
                    android:layout_marginStart="13dp"
                    android:layout_toRightOf="@+id/tv_car_money_more"
                    android:gravity="center_vertical"
                    android:textColor="#99000000"
                    android:textSize="12sp"
                    tools:text="新车含税价格:27.45万/不包含过户费" />
 
                <include
                    layout="@layout/include_line"
                    android:layout_width="match_parent"
                    android:layout_height="0.5dp"
                    android:layout_below="@+id/tv_car_money_more"
                    android:layout_marginStart="12dp"
                    android:layout_marginTop="14dp"
                    android:layout_marginEnd="12dp" />
 
            </RelativeLayout>
 
            <LinearLayout
                android:id="@+id/ll_more_info"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:gravity="center_vertical"
                android:orientation="horizontal">
 
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="14dp"
                    android:text="车辆档案"
                    android:textColor="#ff000000"
                    android:textSize="16sp"
                    android:textStyle="bold" />
 
                <include layout="@layout/include_weight_width" />
 
                <TextView
                    android:id="@+id/tv_more"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginEnd="14dp"
                    android:drawableEnd="@mipmap/right_arrow"
                    android:drawablePadding="6dp"
                    android:text="更多信息"
                    android:textColor="#ff000000"
                    android:textSize="12sp" />
 
            </LinearLayout>
 
            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recycler_view_car_info"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />
 
            <include layout="@layout/include_line_left_12" />
 
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
 
                <TextView
                    android:id="@+id/tv_mar_info"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="14dp"
                    android:layout_marginTop="12dp"
                    android:text="商家信息"
                    android:textColor="#ff000000"
                    android:textSize="16sp"
                    android:textStyle="bold" />
 
                <TextView
                    android:id="@+id/tv_name_car_people"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/tv_mar_info"
                    android:layout_marginStart="14dp"
                    android:layout_marginTop="8dp"
                    android:textColor="#ff000000"
                    android:textSize="14sp"
                    tools:text="王先生" />
 
                <TextView
                    android:id="@+id/rv_statue"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignTop="@+id/tv_name_car_people"
                    android:layout_marginStart="12dp"
                    android:layout_toRightOf="@+id/tv_name_car_people"
                    android:drawableStart="@mipmap/renzheng_car"
                    android:drawablePadding="2dp"
                    android:textColor="#ff00bf30"
                    android:textSize="12sp"
                    android:text="该用户已通过认证" />
 
                <TextView
                    android:id="@+id/tv_sites"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/tv_name_car_people"
                    android:layout_marginStart="14dp"
                    android:layout_marginTop="5dp"
                    android:text="联系地址:"
                    android:textColor="#ff000000"
                    android:textSize="11sp" />
 
 
                <include
                    layout="@layout/include_line_left_12"
                    android:layout_width="match_parent"
                    android:layout_height="0.5dp"
                    android:layout_below="@+id/tv_sites"
                    android:layout_marginTop="14dp" />
 
                <ImageView
                    android:id="@+id/call_phone"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignTop="@+id/rv_statue"
                    android:layout_alignParentEnd="true"
                    android:layout_marginEnd="14dp"
                    android:src="@mipmap/call_phone" />
 
            </RelativeLayout>
 
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="14dp"
                android:layout_marginTop="12dp"
                android:text="车况详情"
                android:textColor="#ff000000"
                android:textSize="16sp"
                android:textStyle="bold" />
 
 
            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recycler_view_car_img"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="12dp" />
 
            <TextView
                android:id="@+id/tv_desprite"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingStart="14dp"
                android:paddingEnd="14dp"
                android:layout_marginTop="12dp"
                android:text="这里是描述信息这里是描述信息这里是描述信息这里是描
述信息这里是描述信息这里是描述信息这里是描述信息这
里是描述信息"
                android:textColor="#ff696969"
                android:textSize="14sp"
                />
 
            <include
                layout="@layout/include_line_left_12"
                android:layout_width="match_parent"
                android:layout_height="0.5dp"
                android:layout_marginTop="14dp" />
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="14dp"
                android:layout_marginTop="12dp"
                android:text="常见问题"
                android:textColor="#ff000000"
                android:textSize="16sp"
                android:textStyle="bold" />
 
            <WebView
                android:id="@+id/web_wt"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="12dp"
                android:layout_marginBottom="12dp" />
 
        </LinearLayout>
 
    </androidx.core.widget.NestedScrollView>
 
 
 
    <RelativeLayout
        android:id="@+id/rl_other"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#FFA145"
        android:gravity="center">
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="40dp"
            android:drawableStart="@mipmap/car_phone"
            android:drawablePadding="8dp"
            android:gravity="center"
            android:text="咨询车况"
            android:textColor="#ffffffff"
            android:textSize="16sp" />
 
 
    </RelativeLayout>
 
 
    <LinearLayout
        android:id="@+id/ll_mine"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:layout_alignParentBottom="true"
        android:gravity="center">
 
        <TextView
            android:id="@+id/tv_sh"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:background="#DCDCDC"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="审核中"
            android:visibility="gone"
            android:textStyle="bold"
            android:textColor="#ff393939"
            android:textSize="16sp"
            />
 
        <TextView
            android:layout_width="0dp"
            android:layout_weight="1"
            android:background="#DCDCDC"
            android:visibility="gone"
            android:id="@+id/tv_edit"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="编辑"
            android:textStyle="bold"
            android:textColor="#ff393939"
            android:textSize="16sp"
            />
 
        <TextView
            android:layout_width="0dp"
            android:layout_weight="1"
            android:visibility="gone"
            android:background="@drawable/bg_main_back"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="下架"
            android:id="@+id/tv_down"
            android:textStyle="bold"
            android:textColor="@color/white"
            android:textSize="16sp"
            />
 
        <TextView
            android:layout_width="0dp"
            android:layout_weight="1"
            android:visibility="gone"
            android:id="@+id/tv_up"
            android:background="@drawable/bg_main_back"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="上架"
            android:textStyle="bold"
            android:textColor="@color/white"
            android:textSize="16sp"
            />
 
 
 
 
    </LinearLayout>
 
 
</RelativeLayout>