002e6dbd3b6374b12633f892e11200f6f23cc40e
[unical.git] / res / layout / add_event.xml
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="wrap_content"
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/location"
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 <CheckBox
62 android:id="@+id/checkBox1"
63 android:layout_width="0dip"
64 android:layout_height="wrap_content"
65 android:layout_weight="2.13"
66 android:text="@string/repeatlabel" />
67
68 <Spinner
69 android:id="@+id/spinner1"
70 android:layout_width="213dp"
71 android:layout_height="wrap_content" />
72
73 </LinearLayout>
74
75 </LinearLayout>
76
77 </ScrollView>
78
79 <LinearLayout
80 android:layout_width="match_parent"
81 android:layout_height="wrap_content"
82 android:layout_weight="1.00" >
83
84 <TextView
85 android:id="@+id/textView3"
86 android:layout_width="wrap_content"
87 android:layout_height="wrap_content"
88 android:text="@string/locationlabel"
89 android:textAppearance="?android:attr/textAppearanceMedium" />
90
91 <EditText
92 android:id="@+id/editText3"
93 android:layout_width="match_parent"
94 android:layout_height="wrap_content"
95 android:ems="10" />
96
97 </LinearLayout>
98
99 <Button
100 android:id="@+id/AddEventButton"
101 android:layout_width="match_parent"
102 android:layout_height="wrap_content"
103 android:text="@string/addeventtitle"
104 />
105
106 </LinearLayout>
This page took 0.023518 seconds and 3 git commands to generate.