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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="14dp"
        android:layout_marginEnd="14dp"
        android:layout_marginBottom="20dp"
        android:background="@drawable/bg_white_10"
        android:orientation="vertical">
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="14dp"
            android:text="合计金额"
            android:textColor="#ff333333"
            android:textSize="16sp"
            android:textStyle="bold" />
 
        <TextView
            android:id="@+id/tv_all_money_num"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="10dp"
            android:text="¥200.00"
            android:textColor="@color/red_price"
            android:textSize="36sp" />
 
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_marginTop="6dp"
            android:gravity="center_vertical"
            android:orientation="horizontal">
 
            <View
                android:layout_width="0dp"
                android:layout_height="1px"
                android:layout_marginRight="14dp"
                android:layout_weight="1"
                android:alpha="0.3"
                android:background="#979797" />
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="费用明细"
                android:textColor="#ff333333"
                android:textSize="14sp" />
 
            <View
                android:layout_width="0dp"
                android:layout_height="1px"
                android:layout_marginLeft="14dp"
                android:layout_weight="1"
                android:alpha="0.3"
                android:background="#979797" />
 
 
        </LinearLayout>
 
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view_money"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="30dp"
            android:gravity="center_vertical"
            android:orientation="horizontal">
 
            <TextView
                android:id="@+id/tv_name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="12dp"
                android:text="平台服务费"
                android:textColor="#ff000000"
                android:textSize="12sp"
                />
 
            <include layout="@layout/include_weight_width"/>
 
            <TextView
                android:id="@+id/tv_money_pint"
                android:layout_marginEnd="12dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="12dp"
                android:text="0元"
                android:textColor="#ff000000"
                android:textSize="12sp"
                />
 
        </LinearLayout>
 
    </LinearLayout>
 
</RelativeLayout>