brsdk_phone_verify.xml
3.4 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"?>
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal"
android:gravity="center_vertical"
>
<ImageView
android:id="@+id/brCountry"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/brsdk_phone_white"
android:tint="@color/brsdk_gray"
android:padding="12dp"
/>
<EditText
android:id="@+id/brAccount"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:hint="@string/brsdk_input_phone"
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:importantForAutofill="no"
android:inputType="phone"
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_safety_white"
android:tint="@color/brsdk_gray"
android:padding="12dp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<EditText
android:id="@+id/brSafety"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:hint="@string/brsdk_safety_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:inputType="number"
android:maxLines="1"
/>
<View
android:layout_width="0.5dp"
android:layout_height="match_parent"
android:background="@color/brsdk_gray50"
/>
<TextView
android:id="@+id/brRequest"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textColor="@color/brsdk_theme"
android:textSize="@dimen/brsdk_font_12sp"
android:text="@string/brsdk_send_code"
android:includeFontPadding="false"
android:paddingStart="@dimen/brsdk_space_8dp"
android:paddingEnd="@dimen/brsdk_space_8dp"
android:gravity="center"
/>
</LinearLayout>
</LinearLayout>
</merge>