-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse_choice.xml
More file actions
60 lines (53 loc) · 2.13 KB
/
course_choice.xml
File metadata and controls
60 lines (53 loc) · 2.13 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
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">
<Button
android:id="@+id/btn_applyCourse"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Apply"
android:visibility="visible"
tools:layout_editor_absoluteX="275dp"
tools:layout_editor_absoluteY="49dp"
tools:visibility="visible" />
<EditText
android:id="@+id/tb_CourseSelect"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="text"
android:text="Enter Course"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="49dp" />
<Button
android:id="@+id/btn_applyUnit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="apply"
tools:layout_editor_absoluteX="275dp"
tools:layout_editor_absoluteY="132dp" />
<EditText
android:id="@+id/tb_CourseModule"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="text"
android:text="Enter Module"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="135dp" />
<CalendarView
android:id="@+id/calendarView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="31dp"
tools:layout_editor_absoluteY="227dp" />
<Button
android:id="@+id/btn_StartSearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Search"
tools:layout_editor_absoluteX="155dp"
tools:layout_editor_absoluteY="594dp" />
</androidx.constraintlayout.widget.ConstraintLayout>