Home | History | Annotate | Download | only in layout
      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"
     22             android:textColor="#ffffffff"
     23             android:background="#ff000000"
     24             android:maxWidth="480px"
     25             android:gravity="center"
     26             />
     27 
     28 
     29 </LinearLayout>
     30 
     31 
     32