qiezi_agreement_view.xml
2.3 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
<?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:orientation="vertical">
<RelativeLayout
android:layout_width="290dp"
android:layout_height="290dp"
android:background="@drawable/qiezi_shape_login_bg">
<TextView
android:id="@+id/bg_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:text="用户隐私协议"
android:textColor="#00CCFF"
android:textSize="15dp" />
<Button
android:id="@+id/bg_btn_read"
android:layout_width="115dp"
android:layout_height="35dp"
android:layout_marginLeft="153dp"
android:layout_marginTop="247dp"
android:layout_marginRight="13dp"
android:layout_marginBottom="10dp"
android:background="@drawable/qiezi_shape_button_enter_bg"
android:text="同意"
android:textColor="@android:color/white"
android:textSize="14dp" />
<Button
android:id="@+id/bg_btn_cancel"
android:layout_width="115dp"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/bg_btn_read"
android:layout_alignBottom="@+id/bg_btn_read"
android:layout_marginLeft="13dp"
android:layout_marginRight="13dp"
android:background="@drawable/qiezi_shape_button_cancel_bg"
android:text="取消"
android:textColor="@android:color/white"
android:textSize="14dp" />
<WebView
android:id="@+id/bg_webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/bg_textview"
android:layout_alignBottom="@id/bg_btn_cancel"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="45dp" />
</RelativeLayout>
</RelativeLayout>