-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity_main.xml
132 lines (108 loc) · 4.05 KB
/
activity_main.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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?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="#EDEEF2"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_marginTop="330dp"
android:layout_height="80dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Learn Tech"
android:textSize="35sp"
android:layout_marginLeft="30dp"
android:textStyle="bold"
android:textColor="#363638"
android:layout_gravity="center"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_marginTop="30dp"
android:layout_height="275dp">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:srcCompat="@drawable/front_bg" />
</LinearLayout>
<TextView
android:layout_centerHorizontal="true"
android:layout_width="match_parent"
android:layout_marginTop="400dp"
android:layout_height="35sp"
android:text="Learn at the comfort of your own home"
android:textSize="20sp"
android:gravity="center"/>
<Button
android:id="@+id/phonebt"
android:layout_width="300dp"
android:layout_marginTop="450dp"
android:layout_centerHorizontal="true"
android:layout_height="55sp"
android:backgroundTint="#000000"
android:gravity="center"
android:textColor="@color/white"
android:text="Continue with Phone number"/>
<Button
android:id="@+id/emailbt"
android:layout_width="250dp"
android:layout_marginTop="520dp"
android:layout_marginLeft="80sp"
android:layout_height="55sp"
android:backgroundTint="#D2D8E8"
android:gravity="center"
android:textColor="@color/black"
android:text="Continue with Mail"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18dp"
android:layout_marginTop="590dp"
android:layout_marginLeft="70dp"
android:text="Already have an account?"/>
<TextView
android:id="@+id/signup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="290dp"
android:layout_marginTop="590dp"
android:clickable="true"
android:text="SignUp"
android:textColor="#E91E63"
android:textSize="18dp"
android:textStyle="bold" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="45sp"
android:layout_marginTop="650sp">
<ImageView
android:id="@+id/imageView2"
android:layout_width="50sp"
android:layout_height="match_parent"
app:srcCompat="@drawable/google_icon"
android:layout_marginLeft="105dp"/>
<ImageView
android:id="@+id/imageView3"
android:layout_width="50sp"
android:layout_height="match_parent"
app:srcCompat="@drawable/twitter_icon"
android:layout_marginLeft="25dp"/>
<ImageView
android:id="@+id/imageView4"
android:layout_width="50sp"
android:layout_height="match_parent"
app:srcCompat="@drawable/linkedin_icon"
android:layout_marginLeft="25dp"/>
</LinearLayout>
<ImageView
android:id="@+id/imageView7"
android:layout_marginTop="10sp"
android:layout_width="80dp"
android:layout_height="50dp"
app:srcCompat="@drawable/baseline_menu_book_24" />
</RelativeLayout>