Context-detection API for Android developed as a university project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.xml 759B

1234567891011121314151617181920
  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. <LinearLayout
  7. android:orientation="vertical"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_weight="1"
  11. android:layout_margin="5dp"
  12. android:id="@+id/frame">
  13. <Spinner
  14. android:id="@+id/spinner"
  15. android:layout_width="fill_parent"
  16. android:layout_height="wrap_content"
  17. android:prompt="@string/plugin_name"
  18. android:drawSelectorOnTop="true"/>
  19. </LinearLayout>
  20. </LinearLayout>