-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathactivity_task_edit.xml
More file actions
39 lines (32 loc) · 1.3 KB
/
activity_task_edit.xml
File metadata and controls
39 lines (32 loc) · 1.3 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="5dp" >
<TextView
style="@style/Widget.Styled.TextView.Form"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/task" />
<include layout="@layout/form_divider" />
<EditText
android:id="@+id/task_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/task_name_hint"
android:inputType="textCapSentences" />
<TextView
style="@style/Widget.Styled.TextView.Form"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/project" />
<include layout="@layout/form_divider" />
<com.thomasgallinari.timetracker.widget.InstantAutoCompleteTextView
android:id="@+id/project_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:completionThreshold="1"
android:hint="@string/project_name_hint"
android:inputType="textCapSentences" />
</LinearLayout>