Elliott Hughes | cc79490 | 2016-03-22 21:18:58 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | android:orientation="vertical" |
| 4 | android:layout_width="fill_parent" |
| 5 | android:layout_height="wrap_content" |
| 6 | > |
| 7 | |
| 8 | <Spinner android:id="@+id/which" |
| 9 | android:layout_width="wrap_content" |
| 10 | android:layout_height="wrap_content" |
| 11 | /> |
| 12 | |
| 13 | <Button android:id="@+id/go" |
| 14 | android:layout_width="wrap_content" |
| 15 | android:layout_height="wrap_content" |
| 16 | android:text="@string/go" |
| 17 | /> |
| 18 | |
| 19 | <TextView android:id="@+id/text" |
| 20 | android:layout_width="wrap_content" |
| 21 | android:layout_height="wrap_content" |
Elliott Hughes | 70ae70b | 2016-04-14 17:17:32 -0700 | [diff] [blame] | 22 | android:fontFamily="sans-serif-medium" |
| 23 | android:textColor="#fff5f5f5" |
| 24 | android:textSize="14sp" |
Elliott Hughes | cc79490 | 2016-03-22 21:18:58 -0700 | [diff] [blame] | 25 | android:background="#ff000000" |
| 26 | android:maxWidth="480px" |
| 27 | android:gravity="center" |
| 28 | /> |
| 29 | |
| 30 | |
| 31 | </LinearLayout> |
| 32 | |
| 33 | |