android中的Spinner的使用
2012-05-17 16:03 Rollen Holt 阅读(2402) 评论(1) 编辑 收藏 举报先来最终的效果吧:
我们的main.xml文件内容为:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <Spinner android:id="@+id/spinner1" android:layout_width="match_parent" android:layout_height="wrap_content" android:entries="@array/books" /> </LinearLayout>
我们在values目录下面新建了一个arrays.xml文件
文件的内容是:
<?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="books"> <item>Rollen</item> <item>Rollen Holt</item> <item>Rollen ren</item> </string-array> </resources>
其余文件都是默认的。
==============================================================================
本博客已经废弃,不在维护。新博客地址:http://wenchao.ren
我喜欢程序员,他们单纯、固执、容易体会到成就感;面对压力,能够挑灯夜战不眠不休;面对困难,能够迎难而上挑战自我。他
们也会感到困惑与傍徨,但每个程序员的心中都有一个比尔盖茨或是乔布斯的梦想“用智慧开创属于自己的事业”。我想说的是,其
实我是一个程序员
==============================================================================