在做应用时,经常要用到下拉列表选择操作,比如我们点击下拉列表选择省市区,选择性别等。我们可以用多种方法实现,比如可以用ListView显示数据,再用onItemClickListner()事件来处理选择操作。不过更好的选择是用Android自带的下拉列表控件Spinner。
--------------------------超简单布局--------------------------------------------------
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/view_city"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<Spinner
android:id="@+id/my_pinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
-------------------------代码实现------------------------------------
public class MainActivity extends Activity {
原文地址:http://blog.csdn.net/true100/article/details/44941525