sy_sdk_pay_web.xml
2.0 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
<?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">
<RelativeLayout
android:id="@+id/yun_sdk_rl_agreement"
android:layout_width="match_parent"
android:layout_height="50dip"
android:background="@color/sy_sdk_color_white"
android:visibility="gone">
<TextView
android:id="@+id/yun_sdk_tv_wv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:maxLength="8"
android:textColor="@color/sy_sdk_color_black"
android:textSize="20dp" />
<ImageView
android:id="@+id/yun_sdk_iv_cancel"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginLeft="5dip"
android:gravity="center"
android:paddingLeft="20dp"
android:paddingTop="12dp"
android:paddingRight="24dp"
android:paddingBottom="12dp"
android:src="@drawable/sy_sdk_old_cancel"
android:tint="@color/sy_sdk_color_black" />
</RelativeLayout>
<WebView
android:id="@+id/yun_sdk_wv_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/yun_sdk_rl_agreement" />
<Button
android:id="@+id/bt_back"
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="60dp"
android:background="@drawable/sy_sdk_blue_kongxin_22"
android:text="返回游戏"
android:textColor="@color/sy_sdk_color_488EF8"
android:visibility="gone" />
</RelativeLayout>