博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android中下拉框spinner的两种用法
阅读量:6283 次
发布时间:2019-06-22

本文共 776 字,大约阅读时间需要 2 分钟。

1.在XHL中:

        android:id="@+id/spinner1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:entries="@+array/other" />
在string.xml中
<String-Array name="desk"
<item>小说</item>
<item>散文</>
<item>诗词</>
</Stirng-Array>
2.首先定义一个xml文件
<Spinner
android:id="@+id/desk"
android:layout_width="wrap_content"
android:layout_height="match_parent"
</Spinner>
其次在activity类中如此定义:
private Spinner spinner;
public void onCreate(Bundle savedInstanceState){
  super.onCreate(savedInstanceState);
  setcontentview(R.layout.desk);
  spinner=(Spinner)findViewById(R.id.desktop);
  String str[]={"好人","坏人"};
  ArrayAdapter man=new ArrayAdapter(this,android.R.layout.simple_spinner_item,str};
  spinner.setAdapter(man);
 

转载于:https://www.cnblogs.com/zhongshujunqia/p/3936373.html

你可能感兴趣的文章
curl工具post用法
查看>>
我的友情链接
查看>>
lvs+keepalived实现web负载及高可用
查看>>
C# 分享几个ip的方法吧,包括正则验证ip
查看>>
sudo apt-get 与 yum安装有啥区别
查看>>
在 jQuery Repeater 进行验证更新等操作时提示消息
查看>>
2018-2019-2 20162329 《网络对抗技术》Exp7: 网络欺诈防范
查看>>
iPhone NSBundle的使用
查看>>
Memory Cache(内存缓存)
查看>>
Java技术相关
查看>>
操作系统概述总结
查看>>
北京程序员 VS 硅谷程序员(转)
查看>>
[AX]AX2012 使用视图
查看>>
20161108学习笔记
查看>>
手把手教你把Vim改装成一个IDE编程环境(图文)
查看>>
Git: 在CentOS上设置共享Repository
查看>>
精心挑选
查看>>
nextcloud 15 Could not open input file: occ
查看>>
串口编程C++实例(CE) .
查看>>
【形式化方法:VDM++系列】3.基于VDM++的图书管理系统需求定义
查看>>