lmw
2024-09-23 f23be5d1086538d541281b84d8b093f95c545c47
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:background="@color/write"
    android:layout_height="wrap_content">
 
    <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_marginStart="18dp"
            android:layout_marginTop="4dp"
            android:textStyle="bold"
            android:text="可乐"
            android:textColor="#ff000000"
            android:textSize="14sp"
            />
 
        <TextView
            android:id="@+id/tv_time"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@+id/tv_name"
            android:layout_marginStart="5dp"
            android:layout_alignBaseline="@+id/tv_name"
            android:text=" 6月22日 10:30/2人乘车"
            android:textColor="#ff666666"
            android:textSize="12sp"
            />
 
        <TextView
            android:id="@+id/tv_start_address"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textStyle="bold"
            android:layout_below="@+id/tv_name"
            android:layout_marginTop="8dp"
            android:layout_marginStart="18dp"
            android:text=""
            android:drawablePadding="11dp"
            android:drawableEnd="@mipmap/icon_right"
            android:maxWidth="150dp"
            android:layout_marginBottom="11dp"
            android:textColor="#ff27282d"
            android:textSize="14sp"
            />
 
        <TextView
            android:id="@+id/tv_end_address"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textStyle="bold"
            android:layout_toRightOf="@+id/tv_start_address"
            android:layout_below="@+id/tv_name"
            android:layout_marginTop="8dp"
            android:layout_marginStart="11dp"
            android:maxWidth="130dp"
            android:text=""
            android:layout_marginBottom="11dp"
            android:textColor="#ff27282d"
            android:textSize="14sp"
            />
 
        <com.xuexiang.xui.widget.button.SmoothCheckBox
            android:id="@+id/smooth_cb"
            android:layout_alignParentEnd="true"
            android:layout_centerVertical="true"
            app:scb_color_checked="@color/main_item_orange"
            android:layout_marginEnd="18dp"
            android:layout_width="20dp"
            android:layout_height="20dp"/>
 
 
    </RelativeLayout>
 
    <include layout="@layout/include_line_14"/>
 
</LinearLayout>