-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActivityMain.xml
206 lines (196 loc) · 7.21 KB
/
ActivityMain.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?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=".MainActivity"
android:orientation="vertical"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="10dp"
android:text="Employee Registration Form"
android:textColor="@color/colorPrimaryDark"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:layout_width="400dp"
android:layout_height="1dp"
android:background="#ACA1A1"
android:layout_gravity="center"
android:layout_marginTop="2dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="5dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="User Name:"
android:textSize="20dp"
android:layout_marginLeft="5dp"/>
<EditText
android:id="@+id/userName"
android:layout_width="300dp"
android:layout_height="40dp"
android:textSize="20dp"
android:background="#5676"
android:hint="Enter Username.."
android:layout_marginLeft="3dp"/>
</LinearLayout>
<TextView
android:id="@+id/userAlert"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#B71C1C"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="5dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Password:"
android:textSize="20dp"
android:layout_marginLeft="5dp" />
<EditText
android:id="@+id/userPassword"
android:layout_width="300dp"
android:layout_height="40dp"
android:textSize="20dp"
android:background="#5676"
android:hint="Enter Password.."
android:layout_marginLeft="13dp"
android:inputType="textPassword" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="5dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Contact:"
android:textSize="20dp"
android:layout_marginLeft="5dp" />
<EditText
android:id="@+id/userContact"
android:layout_width="300dp"
android:layout_height="40dp"
android:textSize="20dp"
android:background="#5676"
android:hint="Enter Contact No.."
android:layout_marginLeft="32dp"
android:inputType="number" />
</LinearLayout>
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Gender"
android:textSize="20dp"
android:layout_marginRight="35dp"
android:layout_marginLeft="5dp"/>
<RadioButton
android:id="@+id/Male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Male"
android:gravity="center"
android:textSize="20dp"/>
<RadioButton
android:id="@+id/Female"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Female"
android:gravity="center"
android:textSize="20dp"/>
</RadioGroup>
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dp"
android:text="Skills"
android:layout_marginRight="53dp"
android:layout_marginLeft="5dp"/>
<CheckBox
android:id="@+id/HTML"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="HTML"
android:textSize="20dp"/>
<CheckBox
android:id="@+id/CSS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CSS"
android:textSize="20dp"/>
<CheckBox
android:id="@+id/PHP"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="PHP"
android:textSize="20dp"/>
</RadioGroup>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Country"
android:textSize="20dp"
android:layout_marginLeft="5dp"/>
<Spinner
android:id="@+id/SpCountry"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_marginLeft="38dp"
android:textSize="30dp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Comment"
android:textSize="20dp"
android:layout_marginLeft="5dp"/>
<EditText
android:id="@+id/usercomment"
android:layout_width="300dp"
android:layout_height="100dp"
android:hint="Enter your comments.."
android:layout_marginLeft="15dp"
android:background="#5676"/>
</LinearLayout>
<Button
android:id="@+id/btnSubmit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Click To Submit"
android:textColor="#F5FBF6"
android:background="#B71C1C"
android:layout_marginTop="10dp"/>
</LinearLayout>