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
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:orientation="vertical"
    android:background="@color/bg_main"
    android:layout_height="match_parent">
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:background="@color/main_yellow_qia"
        android:layout_height="180dp">
 
        <RelativeLayout
            android:id="@+id/rl_title"
            android:layout_width="match_parent"
            android:layout_height="42dp"
            android:layout_marginTop="22dp">
 
            <TextView
                android:id="@+id/tv_left_title_award"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_centerVertical="true"
                android:background="@drawable/bg_clicker"
                android:drawableStart="@mipmap/back_white"
                android:gravity="center"
                android:paddingStart="@dimen/dp_10"
                android:paddingEnd="@dimen/dp_15"
                android:textColor="#333333"
                android:textSize="16sp" />
 
            <TextView
                android:id="@+id/tv_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:drawablePadding="3dp"
                android:maxWidth="280dp"
                android:maxLines="1"
                android:singleLine="true"
                android:text="我的奖励"
                android:textColor="@color/white"
                android:textSize="16sp"
                android:textStyle="bold" />
 
        </RelativeLayout>
 
        <TextView
            android:id="@+id/tv_view_hint"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="当前可提现奖励收益"
            android:layout_marginTop="20dp"
            android:layout_below="@+id/rl_title"
            android:textColor="#ffffffff"
            android:textSize="14sp"
            />
 
        <TextView
            android:id="@+id/tv_money"
            android:layout_width="wrap_content"
            android:layout_below="@+id/tv_view_hint"
            android:layout_centerHorizontal="true"
            android:layout_height="wrap_content"
            android:text="¥325.00"
            android:textColor="#ffffffff"
            android:textSize="30sp"
            />
 
    </RelativeLayout>
 
 
    <TextView
        android:id="@+id/tv_detail"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center_vertical"
        android:background="@color/white"
        android:paddingStart="14dp"
        android:paddingEnd="14dp"
        android:drawableEnd="@mipmap/more_black"
        android:text="收益明细"
        android:textColor="#ff333333"
        android:textSize="14sp"
        />
 
    <TextView
        android:id="@+id/tv_record"
        android:layout_marginTop="1dp"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center_vertical"
        android:paddingStart="14dp"
        android:background="@color/white"
        android:paddingEnd="14dp"
        android:drawableEnd="@mipmap/more_black"
        android:text="结算记录"
        android:textColor="#ff333333"
        android:textSize="14sp"
        />
 
    <include layout="@layout/include_weight_height"/>
 
    <TextView
        android:id="@+id/tv_tixian"
        android:layout_width="match_parent"
        android:text="提现"
        android:textColor="#ffffffff"
        android:gravity="center"
        android:layout_marginTop="44dp"
        android:layout_marginStart="14dp"
        android:layout_marginBottom="14dp"
        android:layout_marginEnd="14dp"
        android:background="@drawable/bg_login"
        android:textSize="14sp"
        android:layout_height="40dp"/>
 
</LinearLayout>