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"?>
<LinearLayout 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:background="@color/background_gray"
    android:orientation="vertical">
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="38dp"
        android:layout_marginTop="1dp"
        android:background="@color/white">
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="乘客列表"
            android:textColor="#ff333333"
            android:textSize="14sp"
            android:textStyle="bold" />
 
        <TextView
            android:id="@+id/tv_num_peo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentEnd="true"
            android:layout_centerVertical="true"
            android:layout_marginEnd="14dp"
            android:drawableStart="@mipmap/icon_people_orange"
            android:drawablePadding="8dp"
            android:paddingStart="14dp"
            android:text="4人"
            android:textColor="#ffef3321"
            android:textSize="16sp" />
 
    </RelativeLayout>
 
    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recycler_view_peo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/white" />
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="6dp"
        android:background="@color/white"
        android:orientation="vertical">
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:paddingTop="12dp"
            android:text="合计金额"
            android:textColor="#ff333333"
            android:textSize="14sp"
            android:textStyle="bold" />
 
        <TextView
            android:id="@+id/all_money"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="5dp"
            android:textColor="#ffef3321"
            android:textSize="24sp"
            android:textStyle="bold"
            tools:text="¥55.78" />
 
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view_all_order"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
 
 
    </LinearLayout>
 
</LinearLayout>