Android编程开发之Spinner组件用法

 更新时间:2015年12月23日 09:26:43   作者:java2009cgh  
这篇文章主要介绍了Android编程开发之Spinner组件用法,结合实例形式分析介绍了Android中Spinner组件的功能、定义及具体使用技巧,需要的朋友可以参考下

本文实例讲述了Android编程开发之Spinner组件用法。分享给大家供大家参考,具体如下:

Spinner组件组要用显示一个下拉列表,在使用中需要用到适配器Adapter,下面是一个该组件的使用示例

首先是布局文件main.xml:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:orientation="vertical" android:layout_width="fill_parent" 
 android:layout_height="fill_parent"> 
 <Spinner android:id="@+id/spinner1" android:layout_width="fill_parent" 
  android:layout_height="wrap_content" /> 
 <Spinner android:id="@+id/spinner2" android:layout_width="fill_parent" 
  android:layout_height="wrap_content" android:layout_marginTop="20dp"/>
</LinearLayout> 

由于用到simpAdapter所以要写子项Item的布局如下 item.xml:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:orientation="horizontal" android:layout_width="fill_parent" 
 android:layout_height="wrap_content"> 
 <ImageView android:id="@+id/ivLogo" android:layout_width="60dp" 
  android:layout_height="60dp" android:src="@drawable/icon" 
  android:paddingLeft="10dp" /> 
 <TextView android:id="@+id/tvApplicationName" android:textColor="#000" 
  android:layout_width="wrap_content" android:layout_height="fill_parent" 
  android:textSize="16dp" android:gravity="center_vertical" 
  android:paddingLeft="10dp" /> 
</LinearLayout> 

下面是代码:

import java.util.ArrayList; 
import java.util.HashMap; 
import java.util.List; 
import java.util.Map; 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.AdapterView; 
import android.widget.ArrayAdapter; 
import android.widget.SimpleAdapter; 
import android.widget.Spinner; 
import android.widget.AdapterView.OnItemSelectedListener; 
public class Main extends Activity 
{ 
 @Override 
 public void onCreate(Bundle savedInstanceState) 
 { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.main); 
  //获取对象 
  Spinner spinner1 = (Spinner) findViewById(R.id.spinner1); 
  String[] applicationNames = new String[] 
  { "多功能日历", "eoeMarket客户端", "耐玩的重力消砖块", "白社会", "程序终结者" }; 
  ArrayAdapter<String> aaAdapter = new ArrayAdapter<String>(this, 
    android.R.layout.simple_spinner_item, applicationNames); 
  // 将如下代码可以使列表项带RadioButton组件 
  // aaAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); 
  spinner1.setAdapter(aaAdapter); 
  Spinner spinner2 = (Spinner) findViewById(R.id.spinner2); 
  final List<Map<String, Object>> items = new ArrayList<Map<String, Object>>(); 
  Map<String, Object> item1 = new HashMap<String, Object>(); 
  item1.put("ivLogo", R.drawable.calendar); 
  item1.put("tvApplicationName", "多功能日历"); 
  Map<String, Object> item2 = new HashMap<String, Object>(); 
  item2.put("ivLogo", R.drawable.eoemarket); 
  item2.put("tvApplicationName", "eoeMarket客户端"); 
  items.add(item1); 
  items.add(item2); 
  SimpleAdapter simpleAdapter = new SimpleAdapter(this, items, 
    R.layout.item, new String[] 
    { "ivLogo", "tvApplicationName" }, new int[] 
    { R.id.ivLogo, R.id.tvApplicationName }); 
  spinner2.setAdapter(simpleAdapter); 
  //为Spinner2加上监听事件 
  spinner2.setOnItemSelectedListener(new OnItemSelectedListener() 
  { 
   @Override 
   public void onItemSelected(AdapterView<?> parent, View view, 
     int position, long id) 
   { 
     new AlertDialog.Builder(view.getContext()).setTitle( 
       items.get(position).get("tvApplicationName") 
         .toString()).setIcon( 
       Integer.parseInt(items.get(position).get("ivLogo")
         .toString())).show(); 
   } 
   @Override 
   public void onNothingSelected(AdapterView<?> parent) 
   {
   } 
  }); 
 } 
}

希望本文所述对大家Android程序设计有所帮助。

相关文章

  • Android调用第三方QQ登录代码分享

    Android调用第三方QQ登录代码分享

    现在的项目开发,调用第三方登录,几乎是必须的,这篇文章主要介绍了Android调用第三方QQ登录代码分享
    2016-05-05
  • Handler制作简单相册查看器的实例代码

    Handler制作简单相册查看器的实例代码

    下面小编就为大家分享一篇Handler制作简单相册查看器的实例代码,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-01-01
  • Android自动测试工具Monkey

    Android自动测试工具Monkey

    Monkey是Android中的一个命令行工具,可以运行在模拟器里或实际设备中。它向系统发送伪随机的用户事件流(如按键输入、触摸屏输入、手势输入等),实现对正在开发的应用程序进行压力测试。Monkey测试是一种为了测试软件的稳定性、健壮性的快速有效的方法
    2016-01-01
  • 21天学习android开发教程之XML解析与生成

    21天学习android开发教程之XML解析与生成

    21天学习android开发教程之XML解析与生成,使用SAX来解析XML,在Android里面可以使用SAX和DOM,DOM需要把整个XML文件读入内存再解析,比较消耗内存,而SAX基于事件驱动的处理方式,可以在各节点触发回调函数,需要的朋友可以参考下
    2016-02-02
  • Android Dialog 设置字体大小的具体方法

    Android Dialog 设置字体大小的具体方法

    这篇文章介绍了Android Dialog 设置字体大小的具体方法,希望能帮助到有同样需求的朋友,可能我的方法不是最好的,也希望有朋友指点
    2013-09-09
  • Android中实现可滑动的Tab的3种方式

    Android中实现可滑动的Tab的3种方式

    这篇文章主要介绍了Android中实现可滑动的Tab的3种方式,需要的朋友可以参考下
    2014-02-02
  • flutter中的布局和响应式app方法示例

    flutter中的布局和响应式app方法示例

    这篇文章主要为大家介绍了flutter中的布局和响应式app方法示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-12-12
  • Android那两个你碰不到但是很重要的类之ViewRootImpl

    Android那两个你碰不到但是很重要的类之ViewRootImpl

    这两个类就是ActivityThread和ViewRootImpl,之所以说碰不到是因为我们无法通过正常的方式引用这两个类或者其类的对象,本文就尝试从几个我们经常接触的方面先谈谈ViewRootImpl,感兴趣的可以参考阅读下
    2023-05-05
  • Flutter路由的几种用法小结

    Flutter路由的几种用法小结

    这篇文章主要介绍了Flutter路由的几种用法,包括基本路由跳转和路由跳转传参方法,本文结合实例代码给大家介绍的非常详细,需要的朋友可以参考下
    2023-12-12
  • 深入理解Android中的xmlns:tools属性

    深入理解Android中的xmlns:tools属性

    关于xmlns:tools属性的介绍网上有很多,小编觉得有必要整理一篇介绍较为详细的内容给大家,下面这篇文章就很深入的介绍了关于Android中的xmlns:tools属性,有需要的朋友们可以参考借鉴,下面来一起看看吧。
    2016-12-12

最新评论