72b207821f3feda4bd67edfd8493f2c977ffc46e
[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:textIsSelectable="true"
15 />
16
17 <TextView
18 android:id="@+id/date"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:selectAllOnFocus="true"
22 android:textIsSelectable="true"
23 android:textSize="20sp"
24 />
25
26 <TextView
27 android:id="@+id/description"
28 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"
30 android:text="@string/descriptionlabel"
31 android:textAppearance="?android:attr/textAppearanceMedium" />
32
33 <LinearLayout
34 android:layout_width="match_parent"
35 android:layout_height="wrap_content" >
36
37 <TextView
38 android:id="@+id/textView1"
39 android:layout_width="wrap_content"
40 android:layout_height="wrap_content"
41 android:text="@string/locationlabel"
42 android:textAppearance="?android:attr/textAppearanceMedium" />
43
44 <TextView
45 android:id="@+id/location"
46 android:layout_width="match_parent"
47 android:layout_height="wrap_content"
48 android:textAppearance="?android:attr/textAppearanceMedium" />
49
50 </LinearLayout>
51
52 </LinearLayout>
This page took 0.021476 seconds and 3 git commands to generate.