]>
Commit | Line | Data |
---|---|---|
1efbc1cc P |
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:id="@+id/imageView1" | |
9 | android:scaleType="fitXY" | |
10 | android:layout_width="match_parent" | |
e2332327 | 11 | android:layout_height="wrap_content" |
1efbc1cc P |
12 | android:src="@android:drawable/title_bar_tall" /> |
13 | ||
14 | <LinearLayout | |
15 | android:baselineAligned="false" | |
16 | android:layout_width="match_parent" | |
17 | android:layout_height="wrap_content"> | |
18 | ||
19 | <LinearLayout | |
20 | android:layout_width="0dip" | |
21 | android:layout_height="wrap_content" | |
22 | android:layout_weight="1" | |
23 | android:orientation="vertical" > | |
24 | ||
25 | <TextView | |
26 | android:id="@+id/startday" | |
27 | android:layout_width="wrap_content" | |
28 | android:layout_height="wrap_content" | |
29 | android:textAppearance="?android:attr/textAppearanceLarge" /> | |
30 | ||
31 | <TextView | |
32 | android:id="@+id/startdate" | |
33 | android:layout_width="wrap_content" | |
34 | android:layout_height="wrap_content" | |
35 | android:textAppearance="?android:attr/textAppearanceMedium" /> | |
36 | <TextView | |
37 | android:id="@+id/starttime" | |
38 | android:layout_width="wrap_content" | |
39 | android:layout_height="wrap_content" | |
40 | android:textAppearance="?android:attr/textAppearanceMedium" /> | |
41 | ||
42 | </LinearLayout> | |
43 | ||
44 | <LinearLayout | |
45 | android:layout_width="0dip" | |
46 | android:layout_height="wrap_content" | |
47 | android:layout_weight="1" | |
48 | android:orientation="vertical" > | |
49 | ||
50 | <TextView | |
51 | android:id="@+id/endday" | |
52 | android:gravity="right" | |
53 | android:layout_width="match_parent" | |
54 | android:layout_height="wrap_content" | |
55 | android:textAppearance="?android:attr/textAppearanceLarge" /> | |
56 | ||
57 | <TextView | |
58 | android:id="@+id/enddate" | |
59 | android:gravity="right" | |
60 | android:layout_width="match_parent" | |
61 | android:layout_height="wrap_content" | |
62 | android:textAppearance="?android:attr/textAppearanceMedium" /> | |
63 | <TextView | |
64 | android:id="@+id/endtime" | |
65 | android:gravity="right" | |
66 | android:layout_width="match_parent" | |
67 | android:layout_height="wrap_content" | |
68 | android:textAppearance="?android:attr/textAppearanceMedium" /> | |
69 | ||
70 | </LinearLayout> | |
71 | </LinearLayout> | |
72 | ||
73 | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:gravity="center"> | |
74 | <Button android:id="@+id/stopAlarm" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/stop_alarm"/> | |
75 | </RelativeLayout> | |
76 | ||
77 | </LinearLayout> |