标签:spinner
第一步:添加一个下拉列表项的list,这里添加的项就是下拉列表的菜单项:
private List<String> list = new ArrayList<String>();
list.add("北京");
list.add("上海"); ==========》》数据源
list.add("广州");
list.add("深圳");
第二步:为下拉列表定义一个数组适配器(ArrayAdapter),这里就是用到了前面定义的list。
adaoter = new ArrayAdapter<String> (this,android.R.layout.simple_apinner.item,list); ====》》定义适配器,添加数据源
第三步:为适配器添加到下拉列表时的菜单样式。
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
第四步:将适配器添加到下拉列表上 --------------------》spinner加载适配器
mySpinner.setAdapter(adapter);
第五步:为下拉列表设置各种事件的相应,这个事件相应菜单被选中
mySpinner.setOnItemSelectedListener(new Spinner.OnItemSelectedListener()) --------------->为spinner设置监听器
下面是一个小示例:
一个布局:
<RelativeLayout 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"
tools:context=".MainActivity" >
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#000"
android:textSize="20dp"/>
<Spinner
android:id="@+id/spinner"
android:layout_below="@id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#345"/>
</RelativeLayout>
一个java类:
public class MainActivity extends Activity implements OnItemSelectedListener{
private String cityName;
private TextView text;
private Spinner spinner;
private List<String> list;
private ArrayAdapter<String> adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
text = (TextView) findViewById(R.id.text);
spinner = (Spinner) findViewById(R.id.spinner);
//1.设置数据源
list = new ArrayList<String>();
list.add("北京");
list.add("上海");
list.add("广州");
list.add("深证");
//2.新建ArrayAdapter(数组适配器)
adapter = new ArrayAdapter<String>(this, android.R.layout.simple_expandable_list_item_1, list);
//3.adapter设置一个下拉表样式
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
//4.spinner加载适配器
spinner.setAdapter(adapter);
//5,spinner设置监听器
spinner.setOnItemSelectedListener(this);
}
@Override
public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
// TODO Auto-generated method stub
cityName = list.get(arg2);
text.setText("您选择的城市是:" + cityName);
}
@Override
public void onNothingSelected(AdapterView<?> arg0) {
// TODO Auto-generated method stub
}
}
代码下载地址:http://download.csdn.net/detail/weimo1234/8426205
标签:spinner
原文地址:http://blog.csdn.net/weimo1234/article/details/43528555