lmw
2024-06-07 4264d859bb9f6cbc4c069a9350c917f1b23009dd
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"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_marginBottom="6dp"
    android:background="@color/write"
    android:layout_height="wrap_content">
 
    <TextView
        android:id="@+id/tv_num"
        android:gravity="center_vertical"
        android:layout_width="wrap_content"
        android:paddingStart="14dp"
        android:textStyle="bold"
        android:drawableStart="@drawable/bg_main_drawble_start"
        android:drawablePadding="10dp"
        android:layout_height="40dp"
        android:text=""
        android:textColor="#ff333333"
        android:textSize="15sp"
        />
 
    <include layout="@layout/include_line_14"/>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center_vertical"
        android:orientation="horizontal">
 
        <TextView
            android:id="@+id/tv_driver"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="27dp"
            tools:text="张师傅-18380120087"
            android:textColor="#ff333333"
            android:textSize="14sp"
            />
 
        <include layout="@layout/include_weight_width"/>
 
        <TextView
            android:id="@+id/tv_bind"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            tools:text="绑定司机"
            android:layout_marginEnd="14dp"
            android:paddingStart="8dp"
            android:paddingEnd="8dp"
            android:paddingTop="5dp"
            android:paddingBottom="5dp"
            android:textColor="#ffffffff"
            android:background="@drawable/bg_yellow_25"
            android:textSize="14sp"
            />
 
    </LinearLayout>
 
    <include layout="@layout/include_line_14"/>
 
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="27dp"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:text="乘客列表"
        android:textStyle="bold"
        android:textColor="#ff333333"
        android:textSize="15sp"
        />
 
    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recycler_view_passenger"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
 
 
 
</LinearLayout>