]>
| Commit | Line | Data |
|---|---|---|
| 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="wrap_content" | |
| 5 | android:orientation="vertical" > | |
| 6 | ||
| 7 | <ImageView | |
| 8 | android:contentDescription="@+string/asd" | |
| 9 | android:id="@+id/imageView1" | |
| 10 | android:scaleType="fitXY" | |
| 11 | android:layout_width="match_parent" | |
| 12 | android:layout_height="wrap_content" | |
| 13 | android:src="@android:drawable/title_bar_tall" /> | |
| 14 | ||
| 15 | <LinearLayout | |
| 16 | android:baselineAligned="false" | |
| 17 | android:layout_width="match_parent" | |
| 18 | android:layout_height="wrap_content"> | |
| 19 | ||
| 20 | <LinearLayout | |
| 21 | android:layout_width="0dip" | |
| 22 | android:layout_height="wrap_content" | |
| 23 | android:layout_weight="1" | |
| 24 | android:orientation="vertical" > | |
| 25 | ||
| 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" | |
| 47 | android:layout_height="wrap_content" | |
| 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" /> | |
| 70 | ||
| 71 | </LinearLayout> | |
| 72 | </LinearLayout> | |
| 73 | ||
| 74 | <View | |
| 75 | android:layout_width="fill_parent" | |
| 76 | android:layout_height="1dp" | |
| 77 | android:background="@android:color/darker_gray"/> | |
| 78 | ||
| 79 | <TextView | |
| 80 | android:layout_width="wrap_content" | |
| 81 | android:layout_height="wrap_content" | |
| 82 | android:text="@string/description" | |
| 83 | android:textStyle="bold" | |
| 84 | android:textAppearance="?android:attr/textAppearanceLarge" /> | |
| 85 | <TextView | |
| 86 | android:id="@+id/event_view_description" | |
| 87 | android:layout_width="match_parent" | |
| 88 | android:layout_height="wrap_content" /> | |
| 89 | ||
| 90 | <View | |
| 91 | android:layout_width="fill_parent" | |
| 92 | android:layout_height="1dp" | |
| 93 | android:background="@android:color/darker_gray"/> | |
| 94 | ||
| 95 | <TextView | |
| 96 | android:layout_width="wrap_content" | |
| 97 | android:layout_height="wrap_content" | |
| 98 | android:text="@string/alarms" | |
| 99 | android:textStyle="bold" | |
| 100 | android:textAppearance="?android:attr/textAppearanceLarge" /> | |
| 101 | <ListView | |
| 102 | android:id="@+id/alarm_list" | |
| 103 | android:layout_width="match_parent" | |
| 104 | android:layout_height="wrap_content" /> | |
| 105 | </LinearLayout> |