b8f77135e3c481e31128812f889ca9f172939594
[unical.git] / res / layout / event_view.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 <LinearLayout
35 android:layout_width="match_parent"
36 android:layout_height="wrap_content" >
37
38 <TextView
39 android:id="@+id/textView1"
40 android:layout_width="wrap_content"
41 android:layout_height="wrap_content"
42 android:text="@string/locationlabel"
43 android:textAppearance="?android:attr/textAppearanceMedium" />
44
45 <TextView
46 android:id="@+id/location"
47 android:layout_width="match_parent"
48 android:layout_height="wrap_content"
49 android:textAppearance="?android:attr/textAppearanceMedium" />
50
51 </LinearLayout>
52
53 </LinearLayout>
This page took 0.021122 seconds and 3 git commands to generate.