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