brsdk_bind_phone.xml
1.7 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/brsdk_layout_root"
tools:layout_marginStart="32dp"
tools:layout_marginEnd="32dp"
tools:layout_gravity="center"
>
<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/brsdk_navigation"
android:layout_marginTop="-4dp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/brsdk_r4_white"
android:gravity="center_vertical"
>
<include layout="@layout/brsdk_phone_verify" />
</LinearLayout>
<TextView
android:id="@+id/brSubmit"
android:layout_width="match_parent"
android:layout_height="40dp"
android:textColor="@color/brsdk_white"
android:textSize="@dimen/brsdk_font_18sp"
android:text="@string/brsdk_button_bind"
android:background="@drawable/brsdk_r4_theme"
android:includeFontPadding="false"
android:layout_marginTop="@dimen/brsdk_space_8dp"
android:gravity="center"
/>
<TextView
android:id="@+id/brMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/brsdk_font_12sp"
android:textColor="@color/brsdk_white"
android:text="@string/brsdk_phone_desc"
android:lineSpacingExtra="2dp"
android:includeFontPadding="false"
android:layout_marginTop="10dp"
android:gravity="center"
/>
</LinearLayout>