1 <?xml version="1.0" encoding="utf-8"?> |
1 <?xml version="1.0" encoding="utf-8"?> |
2 |
2 |
3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
4 android:orientation="vertical" |
4 android:orientation="vertical" android:layout_width="fill_parent" |
5 android:layout_width="fill_parent" |
5 android:layout_height="fill_parent"> |
6 android:layout_height="fill_parent"> |
6 |
7 |
|
8 <Spinner android:id="@+id/ChangeStatusSpinner" |
7 <Spinner android:id="@+id/ChangeStatusSpinner" |
9 android:layout_width="fill_parent" |
8 android:layout_width="fill_parent" android:layout_height="wrap_content" |
10 android:layout_height="wrap_content" |
9 android:drawSelectorOnTop="true" /> |
11 android:drawSelectorOnTop="true"/> |
10 |
12 |
11 <TextView android:layout_width="fill_parent" |
13 <TextView android:layout_width="fill_parent" |
12 android:layout_height="wrap_content" android:text="@string/ChangeStatusText" |
14 android:layout_height="wrap_content" |
13 android:textColor="@color/blue_sky" /> |
15 android:text="@string/ChangeStatusText" |
14 |
16 android:textColor="@color/blue_sky"/> |
15 <EditText android:id="@+id/ChangeStatusText" |
17 |
16 android:layout_width="fill_parent" android:layout_height="wrap_content" |
18 <EditText android:id="@+id/ChangeStatusText" |
17 android:lines="6" /> |
19 android:layout_width="fill_parent" |
18 |
20 android:layout_height="wrap_content" |
19 <LinearLayout android:orientation="horizontal" |
21 android:lines="6"/> |
20 android:layout_width="fill_parent" android:layout_height="wrap_content"> |
22 |
21 |
23 <LinearLayout |
22 <Button android:id="@+id/ChangeStatusOk" android:layout_width="fill_parent" |
24 android:orientation="horizontal" |
23 android:layout_height="fill_parent" android:layout_weight="1" |
25 android:layout_width="fill_parent" |
24 android:text="@string/OkButton" /> |
26 android:layout_height="wrap_content"> |
25 |
27 |
|
28 <Button android:id="@+id/ChangeStatusOk" |
|
29 android:layout_width="fill_parent" |
|
30 android:layout_height="fill_parent" |
|
31 android:layout_weight="1" |
|
32 android:text="@string/OkButton"/> |
|
33 |
|
34 <Button android:id="@+id/ChangeStatusClear" |
26 <Button android:id="@+id/ChangeStatusClear" |
35 android:layout_width="fill_parent" |
27 android:layout_width="fill_parent" android:layout_height="fill_parent" |
36 android:layout_height="fill_parent" |
28 android:layout_weight="1" android:text="@string/ClearButton" /> |
37 android:layout_weight="1" |
29 </LinearLayout> |
38 android:text="@string/ClearButton"/> |
|
39 </LinearLayout> |
|
40 </LinearLayout> |
30 </LinearLayout> |