-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathactivity_sms_code.xml
More file actions
70 lines (55 loc) · 2.03 KB
/
Copy pathactivity_sms_code.xml
File metadata and controls
70 lines (55 loc) · 2.03 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".sms_code"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Enter the 4-digit code sent to you
at +62 858-2177-1577."
android:textColor="@android:color/black"
android:textSize="20dp"
android:layout_marginTop="50dp"
android:layout_marginLeft="25dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="156dp"
android:layout_marginTop="20dp"
android:layout_height="match_parent"
android:layout_marginLeft="30dp"
android:backgroundTint="#000"
android:hint="0 0 0 0" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
<TextView
android:id="@+id/tveditmobilenumber"
android:layout_width="160dp"
android:layout_height="wrap_content"
android:layout_marginLeft="27dp"
android:layout_marginTop="470dp"
android:text="Edit my mobile number"
android:textColor="#4c95f5" />
<Button
android:id="@+id/btnsms"
android:layout_width="53dp"
android:layout_height="58dp"
android:layout_gravity="center"
android:layout_marginLeft="120dp"
android:layout_marginBottom="30dp"
android:width="40dp"
android:height="40dp"
android:background="@drawable/btn_circle"
android:text="-->"
android:textColor="@android:color/white"
android:textSize="20dp" />
</LinearLayout>