brsdk_identify.xml
4.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
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"?>
<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"
/>
<TextView
android:id="@+id/brMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/brsdk_font_10sp"
android:textColor="@color/brsdk_white"
android:text="@string/brsdk_identify_desc"
android:includeFontPadding="false"
android:layout_marginTop="-4dp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginTop="@dimen/brsdk_space_8dp"
android:background="@drawable/brsdk_r4_white"
android:gravity="center_vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal"
android:gravity="center_vertical"
>
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/brsdk_account_white"
android:tint="@color/brsdk_gray"
android:padding="12dp"
/>
<EditText
android:id="@+id/brFullName"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:hint="@string/brsdk_identify_name"
android:textColorHint="@color/brsdk_gray"
android:textSize="@dimen/brsdk_font_16sp"
android:background="@android:color/transparent"
android:textColor="@color/brsdk_444444"
android:includeFontPadding="false"
android:maxLines="1"
/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/brsdk_gray50"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal"
android:gravity="center_vertical"
>
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/brsdk_identify_white"
android:tint="@color/brsdk_gray"
android:padding="12dp"
/>
<EditText
android:id="@+id/brIDCode"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:hint="@string/brsdk_identify_code"
android:textColorHint="@color/brsdk_gray"
android:textSize="@dimen/brsdk_font_16sp"
android:background="@android:color/transparent"
android:textColor="@color/brsdk_444444"
android:includeFontPadding="false"
android:maxLines="1"
/>
<!-- android:inputType="number"-->
<!-- android:digits="0123456789Xx"-->
</LinearLayout>
</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_submit"
android:background="@drawable/brsdk_r4_theme"
android:includeFontPadding="false"
android:layout_marginTop="@dimen/brsdk_space_8dp"
android:gravity="center"
/>
</LinearLayout>