-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_add_event.xml
49 lines (41 loc) · 1.78 KB
/
activity_add_event.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
49
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
tools:context="com.eventtracker.com.eventtracker.AddEventActivity">
<android.support.design.widget.TextInputLayout
android:id="@+id/title_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/title_edit_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="Event for..." />
</android.support.design.widget.TextInputLayout>
<TextView
android:id="@+id/date_title_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/title_layout"
android:layout_marginTop="16dp"
android:text="Select date time"
android:textColor="@android:color/black"
android:textSize="20sp" />
<TextView
android:id="@+id/date_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/date_title_text_view"
android:layout_marginTop="16dp" />
<TextView
android:id="@+id/time_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/date_text_view"
android:layout_marginTop="12dp" />
</RelativeLayout>
</layout>