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
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
149
150
151
152
153
154
155
156
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="@color/write"
    android:layout_width="match_parent"
    android:layout_marginBottom="6dp"
    android:layout_height="wrap_content">
 
    <LinearLayout
        android:id="@+id/ll_item_main"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/write"
        android:paddingBottom="14dp"
        android:paddingStart="14dp"
        android:orientation="vertical">
 
        <TextView
            android:id="@+id/tv_time"
            android:layout_width="wrap_content"
            android:layout_marginTop="11dp"
            android:layout_height="wrap_content"
            android:text="申请时间:2019年5月20日18:00"
            android:layout_marginBottom="10dp"
            android:textColor="#ff666666"
            android:textSize="13sp"
            />
 
        <include layout="@layout/include_line"/>
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_marginTop="8dp"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="起点: "
                android:textStyle="bold"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
            <TextView
                android:id="@+id/tv_start"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="泸州高速客运中心"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
        </LinearLayout>
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_marginTop="5dp"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="重点: "
                android:textStyle="bold"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
            <TextView
                android:id="@+id/tv_end"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="泸州高速客运中心"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
        </LinearLayout>
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_marginTop="5dp"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="订单类型: "
                android:textStyle="bold"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
            <TextView
                android:id="@+id/tv_shen_car_type"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="专车订单"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
        </LinearLayout>
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_marginTop="5dp"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="申请司机: "
                android:textStyle="bold"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
            <TextView
                android:id="@+id/tv_driver"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="张三-川E12345"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
        </LinearLayout>
 
 
    </LinearLayout>
 
    <TextView
        android:id="@+id/tv_now"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_marginBottom="14dp"
        android:layout_marginEnd="14dp"
        android:background="@drawable/main_color_eight_two"
        android:layout_alignBottom="@+id/ll_item_main"
        android:text="立即处理"
        android:paddingStart="10dp"
        android:paddingEnd="10dp"
        android:paddingTop="6dp"
        android:paddingBottom="6dp"
        android:textColor="#ffffffff"
        android:textSize="13sp"
        />
 
</RelativeLayout>