blob: 0900b110252efdbadddeb045451ad5c3184b87b5 [file] [log] [blame]
Elliott Hughes3d0153a2016-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"
22 android:textColor="#ffffffff"
23 android:background="#ff000000"
24 android:maxWidth="480px"
25 android:gravity="center"
26 />
27
28
29</LinearLayout>
30
31