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
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="#F3F4F5"
    android:layout_height="match_parent">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginStart="10dp"
        android:layout_marginTop="14dp"
        android:layout_marginEnd="10dp"
        android:layout_marginBottom="14dp"
        android:background="@drawable/bg_write_cricle_4"
        android:orientation="vertical">
 
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view_all"
            android:layout_width="match_parent"
            android:layout_height="656.5dp" />
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:gravity="center_vertical"
            android:orientation="horizontal"
            android:paddingStart="12dp">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="是否有抵押"
                android:textColor="#ff000000"
                android:textSize="14sp" />
 
            <include layout="@layout/include_weight_width" />
 
            <TextView
                android:id="@+id/tv_have"
                android:layout_width="41dp"
                android:layout_height="24dp"
                android:background="@drawable/city_color_btn"
                android:gravity="center"
                android:text="有"
                android:textColor="@color/color_1d99ea"
                android:textSize="12sp" />
 
            <TextView
                android:id="@+id/tv_none"
                android:layout_width="41dp"
                android:layout_height="24dp"
                android:layout_marginStart="20dp"
                android:layout_marginEnd="15dp"
                android:background="@drawable/car_get_start_4"
                android:gravity="center"
                android:text="无"
                android:textColor="#ffffffff"
                android:textSize="12sp" />
 
 
        </LinearLayout>
 
        <include layout="@layout/include_line" />
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:gravity="center_vertical"
            android:paddingStart="12dp"
            android:text="车辆加装配置"
            android:textColor="#ff000000"
            android:textSize="14sp"
            android:textStyle="bold" />
 
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view_add"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
 
    </LinearLayout>
 
</androidx.core.widget.NestedScrollView>