Add interface for adding events
[unical.git] / res / layout / addevent.xml
CommitLineData
eb5b6684
PT
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="vertical" >
6
7 <ScrollView
8 android:id="@+id/scrollView1"
9 android:layout_width="match_parent"
10 android:layout_height="wrap_content"
11 android:layout_weight="1.00" >
12
13 <LinearLayout
14 android:layout_width="match_parent"
15 android:layout_height="match_parent"
16 android:orientation="vertical" >
17
18 <LinearLayout
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:layout_weight="2.13" >
22
23 <TextView
24 android:id="@+id/textView1"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:text="@string/title"
28 android:textAppearance="?android:attr/textAppearanceMedium" />
29
30 <EditText
31 android:id="@+id/editText1"
32 android:layout_width="match_parent"
33 android:layout_height="wrap_content"
34 android:ems="10" >
35
36 <requestFocus />
37 </EditText>
38
39 </LinearLayout>
40
41 <TextView
42 android:id="@+id/textView2"
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:text="@string/description"
46 android:textAppearance="?android:attr/textAppearanceMedium" />
47
48 <EditText
49 android:id="@+id/editText2"
50 android:layout_width="match_parent"
51 android:layout_height="wrap_content"
52 android:layout_weight="2.13"
53 android:ems="10"
54 android:inputType="textMultiLine" />
55
56 <LinearLayout
57 android:layout_width="match_parent"
58 android:layout_height="wrap_content"
59 android:layout_weight="2.13" >
60
61 <TimePicker
62 android:id="@+id/timePicker1"
63 android:layout_width="171dp"
64 android:layout_height="wrap_content" />
65
66 <DatePicker
67 android:id="@+id/datePicker1"
68 android:layout_width="match_parent"
69 android:layout_height="match_parent" />
70
71 </LinearLayout>
72
73 <LinearLayout
74 android:layout_width="match_parent"
75 android:layout_height="wrap_content"
76 android:layout_weight="2.13" >
77
78 <CheckBox
79 android:id="@+id/checkBox1"
80 android:layout_width="wrap_content"
81 android:layout_height="wrap_content"
82 android:layout_weight="2.13"
83 android:text="@string/repeatlabel" />
84
85 <Spinner
86 android:id="@+id/spinner1"
87 android:layout_width="213dp"
88 android:layout_height="wrap_content" />
89
90 </LinearLayout>
91
92 </LinearLayout>
93
94 </ScrollView>
95
96 <LinearLayout
97 android:layout_width="match_parent"
98 android:layout_height="wrap_content"
99 android:layout_weight="1.00" >
100
101 <TextView
102 android:id="@+id/textView3"
103 android:layout_width="wrap_content"
104 android:layout_height="wrap_content"
105 android:text="@string/locationlabel"
106 android:textAppearance="?android:attr/textAppearanceMedium" />
107
108 <EditText
109 android:id="@+id/editText3"
110 android:layout_width="match_parent"
111 android:layout_height="wrap_content"
112 android:ems="10" />
113
114 </LinearLayout>
115
116 <Button
117 android:id="@+id/AddEventButton"
118 android:layout_width="match_parent"
119 android:layout_height="wrap_content"
120 android:text="Add Event"
121 />
122
123</LinearLayout>
This page took 0.015509 seconds and 4 git commands to generate.