admin
2022-05-07 4c7cde7ae5ed57335405459e47de4bbd2726c4ba
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:orientation="vertical">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/shape_white_corner_radius_common"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        android:padding="11dp">
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:paddingTop="10dp"
            android:paddingBottom="10dp"
            android:text="金币加倍"
            android:textColor="@color/theme"
            android:textSize="18sp"
            android:textStyle="bold"></TextView>
 
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:paddingTop="20dp">
 
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/ic_goldcorn_double_dialog_video"></ImageView>
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                android:text="看广告金币加倍"
                android:textColor="@color/black"
                android:textSize="14sp"></TextView>
 
 
        </LinearLayout>
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:paddingTop="10dp">
 
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="21dp"
                android:src="@drawable/icon_home_goldcorn"></ImageView>
 
 
            <TextView
                android:id="@+id/tv_goldcorn_old"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="2dp"
                android:text="500"
                android:textColor="#FF8316"
                android:textSize="15sp"
                android:textStyle="bold"></TextView>
 
            <View
                android:layout_width="10dp"
                android:layout_height="1dp"></View>
 
 
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="21dp"
                android:src="@drawable/ic_goldcorn_double_dialog_double"></ImageView>
 
            <View
                android:layout_width="10dp"
                android:layout_height="1dp"></View>
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="2dp"
                android:text="="
                android:textColor="#FF8316"
                android:textSize="15sp"
                android:textStyle="bold"></TextView>
 
            <View
                android:layout_width="5dp"
                android:layout_height="1dp"></View>
 
 
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="21dp"
                android:src="@drawable/icon_home_goldcorn"></ImageView>
 
 
            <TextView
                android:id="@+id/tv_goldcorn_new"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="2dp"
                android:text="1000"
                android:textColor="#FF8316"
                android:textSize="15sp"
                android:textStyle="bold"></TextView>
 
 
        </LinearLayout>
 
 
        <CheckBox
            android:id="@+id/cb_notify"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:button="@drawable/selector_checked"
            android:padding="6dp"
            android:text="不弹出此框,直接加倍"
            android:textColor="#999999"
            android:textSize="10sp"></CheckBox>
 
 
        <TextView
            android:id="@+id/tv_positive"
            android:layout_width="match_parent"
            android:layout_height="42dp"
            android:background="@drawable/shape_theme_corner_radius_common"
            android:gravity="center"
            android:text="去加倍"
            android:textColor="@color/white"
            android:textSize="15sp"></TextView>
 
    </LinearLayout>
 
    <ImageView
        android:id="@+id/iv_close"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:padding="7dp"
        android:src="@drawable/icon_dialog_close"></ImageView>
 
 
</LinearLayout>