aiqu_dialog_privacy_agreement.xml
4.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
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/round_rad5_bg"
android:clipChildren="true"
android:orientation="vertical">
<TextView
android:id="@+id/tv_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_gravity="center_vertical"
android:layout_marginTop="15dp"
android:gravity="center"
android:text="个人信息保护引导"
android:textColor="@color/black"
android:textSize="18sp"
android:textStyle="bold" />
<ScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginTop="10dp"
android:layout_below="@+id/tv_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="8dp"
android:textColor="@color/black"
android:text="1.本游戏保护了你的个人隐私,并按法律法规要求,采 取严格的安全保护措施,保护你的隐私。"
android:textSize="14sp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="8dp"
android:textColor="@color/black"
android:textSize="14sp"
android:text="2.本游戏内嵌了第三方SDK,在提供和优化我们的服务 时,可能会收集您的个人信息,详情内容请查看《隐私政策》。" />
<TextView
android:id="@+id/tv_agreement"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:textColor="@color/black"
android:layout_marginTop="8dp"
android:layout_alignParentBottom="true"
android:gravity="center_vertical"
android:text="3.请在使用游戏前,务必仔细阅读、充分理解,《用户协议》和《隐私政策》,当您点击同意并进入时,即表示您已理解并同意该条款内容,如您不同意将无法进入游戏"
android:textSize="14sp" />
</LinearLayout>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_below="@+id/scroll_view"
android:layout_marginTop="0dp"
android:orientation="horizontal">
<Button
android:id="@+id/btn_cancel"
android:layout_width="0dp"
android:layout_height="36dp"
android:layout_weight="1"
android:layout_marginLeft="15dp"
android:layout_gravity="center_vertical"
android:background="@drawable/round_green_stroke"
android:text="拒绝"
android:textColor="#666666"
android:textSize="14sp" />
<Button
android:id="@+id/btn_sure"
android:layout_width="0dp"
android:layout_height="36dp"
android:layout_marginRight="15dp"
android:layout_marginLeft="15dp"
android:layout_gravity="center_vertical"
android:layout_alignParentRight="true"
android:layout_weight="1"
android:background="@drawable/round_rad5_bg"
android:backgroundTint="@color/green2"
android:text="同意"
android:textColor="@color/common_white"
android:textSize="14sp" />
</LinearLayout>
</RelativeLayout>