brsdk_protocol.xml
3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/brsdk_r8_white"
android:paddingTop="@dimen/brsdk_space_8dp"
android:paddingBottom="@dimen/brsdk_space_12dp"
android:paddingStart="@dimen/brsdk_space_16dp"
android:paddingEnd="@dimen/brsdk_space_16dp"
android:elevation="@dimen/brsdk_space_4dp"
tools:layout_gravity="center"
tools:layout_width="230dp"
>
<TextView
android:id="@+id/brTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#333333"
android:textSize="@dimen/brsdk_font_16sp"
android:gravity="center"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:textStyle="bold"
android:text="@string/brsdk_protocol_title"
/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:minHeight="128dp"
android:layout_marginBottom="@dimen/brsdk_space_8dp"
android:overScrollMode="never"
android:scrollbars="none"
>
<TextView
android:id="@+id/brMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/brsdk_space_4dp"
android:paddingBottom="@dimen/brsdk_space_4dp"
android:textColor="#444444"
android:textSize="13dp"
android:lineSpacingExtra="2dp"
tools:text="在此特别提醒您在注册成为用户之前,请认真阅读本《隐私政策与用户协议》,确保您充分理解本协议中各条款。请您审慎阅读并选择接受或不接受本协议。您的注册、登录、使用等行为将视为对本协议的接受,并同意接受本协议各项条款的约束。"
/>
</ScrollView>
<TextView
android:id="@+id/brPositive"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:background="@drawable/brsdk_r4_theme"
android:gravity="center"
android:paddingTop="6dp"
android:paddingBottom="6dp"
android:textSize="@dimen/brsdk_font_16sp"
tools:text="同意"
/>
<TextView
android:id="@+id/brNegative"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/darker_gray"
android:gravity="center"
android:paddingTop="@dimen/brsdk_space_4dp"
android:paddingBottom="@dimen/brsdk_space_4dp"
android:layout_marginTop="@dimen/brsdk_space_8dp"
android:textSize="@dimen/brsdk_font_12sp"
tools:text="不同意"
/>
</LinearLayout>