]>
Commit | Line | Data |
---|---|---|
bdd8f09c 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" | |
99658f57 | 4 | android:layout_height="wrap_content" |
bdd8f09c PT |
5 | android:orientation="vertical" > |
6 | ||
99658f57 | 7 | <ImageView |
82d6ca01 | 8 | android:contentDescription="@+string/asd" |
99658f57 PT |
9 | android:id="@+id/imageView1" |
10 | android:scaleType="fitXY" | |
bdd8f09c PT |
11 | android:layout_width="match_parent" |
12 | android:layout_height="wrap_content" | |
99658f57 | 13 | android:src="@android:drawable/title_bar_tall" /> |
bdd8f09c | 14 | |
222ca38d | 15 | <LinearLayout |
82d6ca01 | 16 | android:baselineAligned="false" |
222ca38d | 17 | android:layout_width="match_parent" |
99658f57 | 18 | android:layout_height="wrap_content"> |
222ca38d | 19 | |
99658f57 PT |
20 | <LinearLayout |
21 | android:layout_width="0dip" | |
222ca38d | 22 | android:layout_height="wrap_content" |
99658f57 PT |
23 | android:layout_weight="1" |
24 | android:orientation="vertical" > | |
222ca38d | 25 | |
99658f57 PT |
26 | <TextView |
27 | android:id="@+id/startday" | |
28 | android:layout_width="wrap_content" | |
29 | android:layout_height="wrap_content" | |
30 | android:textAppearance="?android:attr/textAppearanceLarge" /> | |
31 | ||
32 | <TextView | |
33 | android:id="@+id/startdate" | |
34 | android:layout_width="wrap_content" | |
35 | android:layout_height="wrap_content" | |
36 | android:textAppearance="?android:attr/textAppearanceMedium" /> | |
37 | <TextView | |
38 | android:id="@+id/starttime" | |
39 | android:layout_width="wrap_content" | |
40 | android:layout_height="wrap_content" | |
41 | android:textAppearance="?android:attr/textAppearanceMedium" /> | |
42 | ||
43 | </LinearLayout> | |
44 | ||
45 | <LinearLayout | |
46 | android:layout_width="0dip" | |
222ca38d | 47 | android:layout_height="wrap_content" |
99658f57 PT |
48 | android:layout_weight="1" |
49 | android:orientation="vertical" > | |
50 | ||
51 | <TextView | |
52 | android:id="@+id/endday" | |
53 | android:gravity="right" | |
54 | android:layout_width="match_parent" | |
55 | android:layout_height="wrap_content" | |
56 | android:textAppearance="?android:attr/textAppearanceLarge" /> | |
57 | ||
58 | <TextView | |
59 | android:id="@+id/enddate" | |
60 | android:gravity="right" | |
61 | android:layout_width="match_parent" | |
62 | android:layout_height="wrap_content" | |
63 | android:textAppearance="?android:attr/textAppearanceMedium" /> | |
64 | <TextView | |
65 | android:id="@+id/endtime" | |
66 | android:gravity="right" | |
67 | android:layout_width="match_parent" | |
68 | android:layout_height="wrap_content" | |
69 | android:textAppearance="?android:attr/textAppearanceMedium" /> | |
222ca38d | 70 | |
99658f57 | 71 | </LinearLayout> |
222ca38d PT |
72 | </LinearLayout> |
73 | ||
99658f57 PT |
74 | <TextView |
75 | android:layout_width="wrap_content" | |
76 | android:layout_height="wrap_content" | |
77 | android:text="@string/descriptionlabel" | |
78 | android:textStyle="bold" | |
79 | android:textAppearance="?android:attr/textAppearanceLarge" /> | |
82d6ca01 PT |
80 | <TextView |
81 | android:id="@+id/event_view_description" | |
82 | android:layout_width="match_parent" | |
83 | android:layout_height="wrap_content" | |
84 | /> | |
99658f57 | 85 | |
bdd8f09c | 86 | </LinearLayout> |