sdk_charge.xml
3.4 KB
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"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#b0000000" >
<LinearLayout
android:layout_width="@dimen/x450"
android:layout_height="wrap_content"
android:background="@drawable/sdk_solid_white_bg"
android:orientation="vertical"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="@dimen/y78">
<TextView
android:id="@+id/account_safe_tips_title"
android:layout_width="wrap_content"
android:layout_height="@dimen/y84"
android:textSize="@dimen/x22"
android:layout_centerInParent="true"
android:gravity="center"
android:textColor="@color/color_3B3B3B"
android:text="选择支付方式"/>
<RelativeLayout
android:id="@+id/charge_close_layout"
android:layout_width="wrap_content"
android:layout_centerVertical="true"
android:layout_height="wrap_content">
<ImageView
android:layout_width="@dimen/x16"
android:layout_height="@dimen/x16"
android:layout_margin="@dimen/x24"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:background="@drawable/sdk_close"/>
</RelativeLayout>
</RelativeLayout>
<TextView
android:id="@+id/pay_money_tv"
android:layout_width="match_parent"
android:layout_height="@dimen/y144"
android:textSize="@dimen/x24"
android:background="@color/color_EBEBEB"
android:gravity="center"
android:textColor="@color/color_010101"
android:text="¥ 200"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="@dimen/y200">
<com.game.sdk.module.widget.wheelview.WheelView
android:id="@+id/listview"
android:layout_width="match_parent"
android:scrollbarFadeDuration="0"
android:scrollbars="none"
android:dividerHeight="0dp"
android:divider="@color/color_transparent"
android:listSelector="@color/color_transparent"
android:fadeScrollbars="false"
android:layout_height="@dimen/y200"/>
<ImageView
android:id="@+id/pay_list_up"
android:layout_width="match_parent"
android:layout_height="@dimen/y100"
android:background="@drawable/pay_list_up"/>
<ImageView
android:id="@+id/pay_list_down"
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:layout_height="@dimen/y100"
android:background="@drawable/pay_list_down"/>
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/y20"/>
</LinearLayout>
</RelativeLayout>