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