ht_privacy_policy_dialog.xml
3.1 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ht_privacy_ll_container"
android:layout_width="match_parent"
android:layout_gravity="center"
android:layout_height="wrap_content"
android:background="@drawable/ht_privacy_policy_bg"
android:orientation="vertical"
android:padding="10dp">
<TextView
android:id="@+id/ht_dialog_title_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<ScrollView
android:layout_width="match_parent"
android:scrollbars="none"
android:layout_weight="1"
android:id="@+id/ht_privacy_content_layout"
android:layout_height="0dp">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<TextView
android:id="@+id/ht_privacy_tv_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:lineSpacingMultiplier="1.5"
android:textColor="#FF333333"
android:textSize="12sp" />
<TextView
android:id="@+id/ht_privacy_tv_content2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textColor="#FF333333"
android:textSize="12sp" />
<TextView
android:id="@+id/ht_privacy_tv_tips1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textColor="#FF999999"
android:textSize="12sp" />
<TextView
android:id="@+id/ht_privacy_tv_tips2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textColor="#FF999999"
android:textSize="12sp" />
</LinearLayout>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_marginTop="10dp"
android:orientation="horizontal">
<Button
android:id="@+id/ht_privacy_tv_cancel"
android:layout_width="0dp"
android:layout_height="35dp"
android:layout_marginRight="5dp"
android:textColor="#ffffff"
android:background="@drawable/ht_mid_btn_select_bg"
android:layout_weight="1"
android:gravity="center"
android:text="不同意" />
<Button
android:id="@+id/ht_privacy_tv_confirm"
android:layout_width="0dp"
android:layout_height="35dp"
android:layout_marginLeft="5dp"
android:layout_weight="1"
android:textColor="#ffffff"
android:background="@drawable/ht_mid_btn_select_bg"
android:gravity="center"
android:text="同意" />
</LinearLayout>
</LinearLayout>