-
Notifications
You must be signed in to change notification settings - Fork 1
/
content_main.xml
48 lines (40 loc) · 1.51 KB
/
content_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
<?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:orientation="vertical"
android:layout_height="match_parent"
android:layout_width="match_parent">
<TextView
android:layout_width="wrap_content"
android:text="Name"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/etName"
android:layout_width="match_parent"
android:layout_marginBottom="20dp"
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:text="BloodGroup"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/etBloodGroup"
android:layout_width="match_parent"
android:layout_marginBottom="20dp"
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:text="username"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/etUsername"
android:layout_width="match_parent"
android:layout_marginBottom="20dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/bLogOut"
android:text="LogOut"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>