forked from ayushbansal07/DocPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_main4.xml
More file actions
111 lines (100 loc) · 4.73 KB
/
activity_main4.xml
File metadata and controls
111 lines (100 loc) · 4.73 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
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
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_height="match_parent">
xmlns:android="http://schemas.android.com/apk/res/android" />
<RelativeLayout android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
android:paddingBottom="0dp"
tools:context="com.example.abans_000.docplus.SignOthers">
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="#fa0505"
android:id="@+id/textView21" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/textView21" android:layout_marginLeft="10dp"
android:orientation="vertical"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:id="@+id/linearlay">
<!-- <TableRow android:layout_width="fill_parent"> -->
<RelativeLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp">
<TextView
android:layout_width="200dp"
android:layout_height="wrap_content"
android:text="Name of the person bringing in the Patient"
android:textSize="20dp"
android:textColor="#000000"
android:id="@+id/name"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/name"
android:layout_toEndOf="@id/name"
android:id="@+id/hospid"/>
</RelativeLayout>
<RelativeLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Relationship with the Patient"
android:textSize="20dp"
android:textColor="#000000"
android:id="@+id/name"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/name"
android:layout_toEndOf="@id/name"
android:id="@+id/hospid"/>
</RelativeLayout>
<RelativeLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_marginTop="10dp">
<TextView
android:layout_width="90dp"
android:layout_height="wrap_content"
android:text="Mobile"
android:textSize="20dp"
android:textColor="#000000"
android:id="@+id/tm"
/>
<EditText
android:inputType="phone"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/tm"
android:layout_toEndOf="@+id/tm"
android:id="@+id/otmobile"
/>
</RelativeLayout>
</LinearLayout>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Submit"
android:id="@+id/otsignup"
android:layout_below="@+id/linearlay"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
/>
<!-- <Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button5"
android:layout_gravity="center_horizontal"
android:layout_alignBottom="@+id/linearlay"
android:layout_centerHorizontal="true"
android:layout_toStartOf="@+id/linearlay"
/>
-->
</RelativeLayout>
</ScrollView>