-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_data.xml
More file actions
142 lines (128 loc) · 4.59 KB
/
activity_data.xml
File metadata and controls
142 lines (128 loc) · 4.59 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
<?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"
tools:context=".DataActivity"
>
<TextView
android:id="@+id/Title"
style="@style/HeaderStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Job Application Data"
android:layout_marginTop="16dp"
android:layout_centerHorizontal="true"/>
<View
android:id="@+id/spacing"
android:layout_below="@id/Title"
android:layout_width="match_parent"
android:layout_height="15dp"
/>
<Button
android:id="@+id/buttonPickDeadline"
style="@style/BtnStyle"
android:textSize="20sp"
app:cornerRadius="0dp"
android:layout_below="@id/spacing"
android:layout_marginLeft="8dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Select Deadline" />
<TextView
android:id="@+id/textDeadline"
android:layout_below="@id/buttonPickDeadline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Deadline:"
android:textSize="24sp"
android:layout_marginLeft="2dp"
android:layout_marginTop="16dp"
/>
<TextView
android:id="@+id/textJobTitle"
android:layout_below="@id/textDeadline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Position:"
android:textSize="24sp"
android:layout_marginLeft="2dp"
android:layout_marginTop="16dp"
/>
<TextView
android:id="@+id/textCompanyName"
android:layout_below="@id/textJobTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Company:"
android:textSize="24sp"
android:layout_marginLeft="2dp"
android:layout_marginTop="16dp"
/>
<TextView
android:id="@+id/textJobLocation"
android:layout_below="@id/textCompanyName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Location:"
android:textSize="24sp"
android:layout_marginLeft="2dp"
android:layout_marginTop="16dp"
/>
<EditText
android:id="@+id/edit_deadline"
android:layout_below="@id/buttonPickDeadline"
android:layout_toRightOf="@id/textDeadline"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Deadline"
android:layout_marginTop="7dp"
android:inputType="none" />
<EditText
android:id="@+id/jobTitle"
android:layout_below="@id/edit_deadline"
android:layout_toRightOf="@id/textJobTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Job Title"
android:inputType="text" />
<EditText
android:id="@+id/companyName"
android:layout_below="@id/jobTitle"
android:layout_toRightOf="@id/textCompanyName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Company Name"
android:layout_marginTop="7dp"
android:inputType="text" />
<EditText
android:id="@+id/jobLocation"
android:layout_below="@id/companyName"
android:layout_toRightOf="@id/textJobLocation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Location"
android:layout_marginTop="7dp"
android:inputType="text" />
<CheckBox
android:id="@+id/checkbox_applied"
android:layout_below="@id/jobLocation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Did you apply?" />
<Button
android:id="@+id/button_add_data"
style="@style/BtnStyle"
app:cornerRadius="0dp"
android:layout_below="@id/checkbox_applied"
android:layout_height="wrap_content"
android:text="Add Job" />
<Button
android:id="@+id/exit"
android:layout_height="wrap_content"
android:text="Exit"
style="@style/BtnStyle"
android:layout_below="@id/button_add_data"
app:cornerRadius="0dp"/>
</RelativeLayout>