search_item_spinner.xml 801 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content" >
  5. <TextView
  6. android:id="@+id/aname"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:layout_alignParentLeft="true"
  10. android:layout_alignParentTop="true"
  11. android:text="Medium Text"
  12. android:textAppearance="?android:attr/textAppearanceMedium" />
  13. <Spinner
  14. android:id="@+id/sp_bool"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:layout_below="@+id/aname"
  18. android:drawSelectorOnTop="true"
  19. />
  20. </RelativeLayout>