ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
#Spinner 下拉框 点击组件时,出现若干列的数值,用户可以选择其中的一个 ~~~ <?xml version="1.0" encoding="utf-8"?> <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" tools:context="com.suityou.www.suityou.HomeActivity"> <Spinner android:layout_width="wrap_content" //设置高度 android:layout_height="wrap_content" //设置宽度 android:id="@+id/spinner" //设置ID /** * entries:下拉框,提供选择项 * array: 是一个array.xml文件,用来存在数组元素 * geographical:数组名称 */ android:entries="@array/geographical" /> </LinearLayout> ~~~ [下拉框的使用教程](http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0105/2264.html)