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
<?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:layout_height="match_parent"
    android:paddingBottom="100dp"
    android:clipToPadding="false"
    android:orientation="vertical">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
 
        <include layout="@layout/include_order_top_cargo" />
 
        <LinearLayout
            android:id="@+id/ll_img_user"
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:background="@color/white"
            android:orientation="horizontal">
 
            <View
                android:layout_width="8dp"
                android:layout_height="8dp"
                android:layout_marginStart="14dp"
                android:layout_marginTop="17dp"
                android:background="@drawable/bg_blue_stroke" />
 
            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recycler_view_user_img2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginStart="8dp"
                android:layout_marginTop="17dp" />
 
        </LinearLayout>
 
        <include layout="@layout/include_line_left_14" />
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:background="@color/white"
            android:orientation="horizontal">
 
            <View
                android:layout_width="8dp"
                android:layout_height="8dp"
                android:layout_marginStart="14dp"
                android:layout_marginTop="17dp"
                android:background="@drawable/bg_blue_stroke" />
 
            <ImageView
                android:id="@+id/iv_image_mine"
                android:layout_width="84dp"
                android:layout_height="56dp"
                android:layout_marginStart="8dp"
                android:layout_marginTop="17dp" />
 
        </LinearLayout>
 
        <include layout="@layout/include_line_left_14" />
 
        <include
            layout="@layout/include_order_money"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="30dp" />
 
        <include
            layout="@layout/activity_order_cancel"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp" />
 
        <TextView
            android:id="@+id/tv_show_pay_over"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="10dp"
            android:text="乘客已支付"
            android:textColor="#ff000000"
            android:textSize="14sp" />
 
        <TextView
            android:id="@+id/tv_recome_money"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="10dp"
            android:text="乘客答谢10元"
            android:textColor="#ff000000"
            android:textSize="16sp"
            android:textStyle="bold" />
 
    </LinearLayout>
 
</androidx.core.widget.NestedScrollView>