add interface for displaying an event
[unical.git] / res / layout / eventview.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 <TextView
8 android:id="@+id/eventTitle"
9 android:layout_width="match_parent"
10 android:layout_height="wrap_content"
11 android:gravity="center"
12 android:text=""
13 android:textSize="35sp"
14 android:selectAllOnFocus="true"
15 android:textIsSelectable="true"
16 />
17
18 <TextView
19 android:id="@+id/date"
20 android:layout_width="match_parent"
21 android:layout_height="wrap_content"
22 android:selectAllOnFocus="true"
23 android:textIsSelectable="true"
24 android:textSize="20sp"
25 />
26
27 <TextView
28 android:id="@+id/description"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
31 android:text="@string/descriptionlabel"
32 android:textAppearance="?android:attr/textAppearanceMedium" />
33
34 <TextView
35 android:id="@+id/description"
36 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 android:text="Small Text"
39 android:textAppearance="?android:attr/textAppearanceSmall" />
40
41 <LinearLayout
42 android:layout_width="match_parent"
43 android:layout_height="wrap_content" >
44
45 <TextView
46 android:id="@+id/textView1"
47 android:layout_width="wrap_content"
48 android:layout_height="wrap_content"
49 android:text="@string/locationlabel"
50 android:textAppearance="?android:attr/textAppearanceMedium" />
51
52 <TextView
53 android:id="@+id/location"
54 android:layout_width="match_parent"
55 android:layout_height="wrap_content"
56 android:text="Medium Text"
57 android:textAppearance="?android:attr/textAppearanceMedium" />
58
59 </LinearLayout>
60
61 </LinearLayout>
This page took 0.022405 seconds and 4 git commands to generate.