-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_otp.xml
52 lines (48 loc) · 1.85 KB
/
activity_otp.xml
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
android:background="@drawable/bb"
tools:context=".OtpActivity">
<EditText
android:id ="@+id/editTextCode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="232dp"
android:ems="10"
android:hint=" OTP"
android:textColorHint="#FFFFFF"
android:textColor="#FFFFFF"
android:inputType="textMultiLine"
tools:layout_editor_absoluteX="85dp"
tools:layout_editor_absoluteY="57dp"
/>
<Button
android:id="@+id/buttonSignIn"
android:layout_width="227dp"
android:layout_height="47dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="82dp"
android:background="#FFFFFF"
android:text="Create Account"
android:textColor="#000000"
android:textSize="20sp"
android:textStyle="bold"
tools:layout_editor_absoluteX="147dp"
tools:layoyt_editor_absoluteY="159dp"
/>
<ProgressBar
android:id="@+id/progressbar"
style="?android:attr/progressBarStyle"
android:layout_width="55dp"
android:layout_height="55dp"
android:layout_below="@+id/editTextCode"
android:layout_centerHorizontal="true"
android:layout_marginTop="214dp"
android:visibility="gone"/>
</RelativeLayout>