lmw
2024-07-31 7047d336091dc429a47f73badf1e53612ca4159e
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll_order_top"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white"
    android:elevation="3dp"
    android:orientation="vertical"
    android:paddingStart="14dp">
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
 
        <TextView
            android:id="@+id/tv_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:text="可乐"
            android:textColor="#ff27282d"
            android:textSize="15sp"
            android:textStyle="bold" />
 
        <TextView
            android:id="@+id/tv_car_num"
            android:layout_below="@+id/tv_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="2dp"
            android:layout_marginBottom="9dp"
            android:alpha="0.6"
            android:text="123次乘车"
            android:textColor="#ff000000"
            android:textSize="12sp" />
 
 
        <ImageView
            android:id="@+id/iv_phone"
            android:layout_centerVertical="true"
            android:layout_marginEnd="14dp"
            android:layout_alignParentEnd="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/icon_dial"/>
 
    </RelativeLayout>
 
 
    <include layout="@layout/include_line" />
 
    <TextView
        android:id="@+id/tv_time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="11dp"
        android:layout_marginBottom="11dp"
        android:drawableStart="@mipmap/icon_time_gray"
        android:drawablePadding="5dp"
        android:text="4月3日 14:00"
        android:textColor="#ff27282d"
        android:textSize="14sp"
        android:textStyle="bold" />
 
    <include layout="@layout/include_line" />
 
 
    <TextView
        android:id="@+id/tv_start_address"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="11dp"
        android:layout_marginBottom="11dp"
        android:drawableStart="@drawable/bg_point_main_color"
        android:drawablePadding="5dp"
        android:text="柳州市政府"
        android:textColor="#ff27282d"
        android:textSize="14sp"
        android:textStyle="bold" />
 
    <include layout="@layout/include_line" />
 
    <TextView
        android:id="@+id/tv_end_address"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="11dp"
        android:layout_marginBottom="11dp"
        android:drawableStart="@drawable/bg_point_main_color_black"
        android:drawablePadding="5dp"
        android:text="柳州客运中心"
        android:textColor="#ff27282d"
        android:textSize="14sp"
        android:textStyle="bold" />
 
    <include layout="@layout/include_line" />
 
    <TextView
        android:id="@+id/tv_people_cargo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="11dp"
        android:layout_marginBottom="11dp"
        android:drawableStart="@mipmap/icon_people_gray"
        android:drawablePadding="5dp"
        android:text="柳州客运中心"
        android:textColor="#ff27282d"
        android:textSize="14sp"
        android:textStyle="bold" />
 
    <include layout="@layout/include_line" />
 
 
    <TextView
        android:id="@+id/tv_tv_num_cargo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="11dp"
        android:layout_marginBottom="11dp"
        android:drawableStart="@mipmap/icon_item"
        android:drawablePadding="5dp"
        android:text="柳州客运中心"
        android:textColor="#ff27282d"
        android:textSize="14sp"
        android:textStyle="bold" />
 
    <include layout="@layout/include_line" />
 
 
    <TextView
        android:id="@+id/tv_money_cargo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="11dp"
        android:layout_marginBottom="11dp"
        android:drawableStart="@mipmap/icon_rocket"
        android:drawablePadding="5dp"
        android:text="柳州客运中心"
        android:textColor="#ff27282d"
        android:textSize="14sp"
        android:textStyle="bold" />
 
    <include layout="@layout/include_line" />
 
 
 
 
</LinearLayout>