android控件Spinner(下拉列表)的使用例子

  <?xml version="1.0" encoding="utf-8"?>

  

  xmlns:android="http://schemas.android.com/apk/res/android"

  xmlns:app="http://schemas.android.com/apk/res-auto"

  xmlns:tools="http://schemas.android.com/tools"

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  android:orientation="vertical"

  tools:context=".MainActivity">

  

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:orientation="horizontal"

  >

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="姓名:"

  android:textSize="20sp"

  />

  

  android:id="@+id/name"

  android:layout_width="80dp"

  android:layout_height="wrap_content"

  />

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="班级:"

  android:textSize="20sp"

  />

  

  android:id="@+id/spinner"

  android:entries="@array/position"

  android:layout_width="match_parent"

  android:layout_height="match_parent"/>

  

  

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:orientation="horizontal"

  >

  

  android:id="@+id/sex"

  android:text="性别:"

  android:textSize="20sp"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"/>

  

  android:id="@+id/group"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content">

  

  android:id="@+id/man"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="男"

  android:textSize="20sp"/>

  

  android:checked="true"

  android:id="@+id/woman"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="女"

  android:textSize="20sp"/>

  

  

  

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:orientation="vertical"

  >

  

  android:layout_gravity="center"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="爱好"

  android:textSize="20sp"

  />

  

  android:id="@+id/basketball"

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:text="篮球" />

  

  android:id="@+id/music"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="音乐"/>

  

  android:id="@+id/game"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="音乐"/>

  

  

  android:id="@+id/button"

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:text="提交"/>