blob: 05a16e1e4324f18c85de87740c2726bc4dc1a5de [file] [log] [blame]
Elliott Hughescc794902016-03-22 21:18:58 -07001<?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 Hughes70ae70b2016-04-14 17:17:32 -070022 android:fontFamily="sans-serif-medium"
23 android:textColor="#fff5f5f5"
24 android:textSize="14sp"
Elliott Hughescc794902016-03-22 21:18:58 -070025 android:background="#ff000000"
26 android:maxWidth="480px"
27 android:gravity="center"
28 />
29
30
31</LinearLayout>
32
33