| 1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" >
- <TextView
- android:id="@+id/aname"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true"
- android:text="Medium Text"
- android:textAppearance="?android:attr/textAppearanceMedium" />
- <Spinner
- android:id="@+id/sp_bool"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@+id/aname"
- android:drawSelectorOnTop="true"
- />
- </RelativeLayout>
|