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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:orientation="vertical"
    android:layout_marginBottom="7dp"
    android:layout_marginStart="14dp"
    android:layout_marginEnd="14dp"
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="wrap_content">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:background="#F3F3F3"
        android:layout_height="wrap_content"
        android:orientation="vertical">
 
        <RelativeLayout
            android:layout_width="match_parent"
            android:paddingBottom="8dp"
            android:background="#F3F3F3"
            android:layout_height="wrap_content">
 
            <TextView
                android:id="@+id/tv_name_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:textStyle="bold"
                android:layout_marginTop="9dp"
                android:text="可乐1"
                android:textColor="#ff000000"
                android:textSize="14sp"
                />
 
            <TextView
                android:id="@+id/tv_pay_statue"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="9dp"
                android:layout_marginEnd="9dp"
                android:layout_alignParentEnd="true"
                android:textStyle="bold"
                android:text="已支付"
                android:textColor="#ff2a6be4"
                android:textSize="14sp"
                />
 
 
        </RelativeLayout>
 
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view_all_money"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
 
 
 
    </LinearLayout>
 
 
    <RelativeLayout
        android:id="@+id/rl_weiver"
        android:layout_gravity="center_horizontal"
        android:layout_width="30dp"
        android:background="#F3F3F3"
        android:gravity="center"
        android:layout_height="16dp">
 
        <ImageView
            android:id="@+id/iv_arrow"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/icon_arrow_open_black" />
 
 
    </RelativeLayout>
 
 
</LinearLayout>