forked from ayushbansal07/DocPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_profile_dr.xml
More file actions
146 lines (134 loc) · 6.26 KB
/
activity_profile_dr.xml
File metadata and controls
146 lines (134 loc) · 6.26 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
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
<?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"
android:background="#EDE8E7">
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="#B60101"
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="wrap_content"
android:layout_height="wrap_content"
android:text="Profile Page"
android:textSize="40dp"
android:textColor="#000000"
android:id="@+id/name"
/>
</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="Name"
android:textSize="20dp"
android:textColor="#000000"
android:id="@+id/ptname"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/ptname"
android:layout_toEndOf="@id/ptname"
android:id="@+id/pname"/>
</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/ptmobile"
/>
<TextView
android:inputType="phone"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/ptmobile"
android:layout_toEndOf="@+id/ptmobile"
android:id="@+id/pmobile"
/>
</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="Age"
android:textSize="20dp"
android:textColor="#000000"
android:id="@+id/ptage"
/>
<TextView
android:inputType="phone"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/ptage"
android:layout_toEndOf="@+id/ptage"
android:id="@+id/page"
/>
</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="Sex"
android:textSize="20dp"
android:textColor="#000000"
android:id="@+id/ptsex"
/>
<TextView
android:inputType="phone"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/ptsex"
android:layout_toEndOf="@+id/ptsex"
android:id="@+id/psex"
/>
</RelativeLayout>
</LinearLayout>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Messages"
android:id="@+id/pmessage"
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>