举例讲解Android应用中SimpleAdapter简单适配器的使用

举例讲解Android应用中SimpleAdapter简单适配器的使用,第1张

概述SimpleAdapter,跟名字一样,一个简单的适配器,既为简单,就只是被设计来做简单的应用的,比如静态数据的绑定,不过仍然有自定义的空间,比如说在每一个ListItem中加一个按钮并添加响应事件.首先还是先看一下SimpleAdapter

SimpleAdapter,跟名字一样,一个简单的适配器,既为简单,就只是被设计来做简单的应用的,比如静态数据的绑定,不过仍然有自定义的空间,比如说在每一个ListItem中加一个按钮并添加响应事件.首先还是先看一下SimpleAdapter的定义吧,直接翻译下SDK doc 吧:

这是一个简单的适配器,可以将静态数据映射到XML文件中定义好的视图。你可以指定由Map组成的List(比如ArrayList)类型的数据。在ArrayList中的每个条目对应List中的一行。Maps包含每一行的数据。你可以指定一个XML布局以指定每一行的视图,根据Map中的数据映射关键字到指定的视图。绑定数据到视图分两个阶段,首先,如果设置了SimpleAdapter.VIEwBinder,那么这个设置的VIEwBinder的setVIEwValue(androID.vIEw.VIEw,Object,String)将被调用。如果setVIEwValue的返回值是true,则表示绑定已经完成,将不再调用系统默认的绑定实现。如果返回值为false,视图将按以下顺序绑定数据:
如果VIEw实现了Checkable(例如CheckBox),期望绑定值是一个布尔类型。
TextVIEw.期望绑定值是一个字符串类型,通过调用setVIEwText(TextVIEw,String)绑定。
ImageVIEw,期望绑定值是一个资源ID或者一个字符串,通过调用setVIEwImage(ImageVIEw,int) 或 setVIEwImage(ImageVIEw,String)绑定数据。
如果没有一个合适的绑定发生将会抛出IllegalStateException。

先看一下构造函数: 

复制代码 代码如下:

public SimpleAdapter (Context context,List<? extends Map<String,?>> data,int resource,String[] from,int[] to)

SimpleAdapter基本上认知了其参数含义 用起来就简单多了。

SimpleAdapter的参数说明:

 第一个参数 表示访问整个androID应用程序接口,基本上所有的组件都需要  第二个参数表示生成一个Map(String,Object)列表选项  第三个参数表示界面布局的ID  表示该文件作为列表项的组件  第四个参数表示该Map对象的哪些key对应value来生成列表项  第五个参数表示来填充的组件 Map对象key对应的资源一依次填充组件 顺序有对应关系  注意的是map对象可以key可以找不到 但组件的必须要有资源填充  因为 找不到key也会返回null 其实就相当于给了一个null资源

 下面的程序中如果 new String[] { "name","head","desc","name" } new int[] {R.ID.name,R.ID.head,R.ID.desc,R.ID.head}

这个head的组件会被name资源覆盖

示例代码

<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="horizontal"   tools:context=".MainActivity" >    <ListVIEw     androID:ID="@+ID/lt1"     androID:layout_wIDth="match_parent"     androID:layout_height="wrap_content" >   </ListVIEw>  </linearLayout> 
<?xml version="1.0" enCoding="utf-8"?> <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"   androID:layout_wIDth="match_parent"   androID:layout_height="match_parent"   androID:orIEntation="horizontal" >    <ImageVIEw     androID:ID="@+ID/head"     androID:layout_wIDth="wrap_content"     androID:layout_height="wrap_content"     androID:paddingleft="10dp" />    <linearLayout     androID:layout_wIDth="match_parent"     androID:layout_height="wrap_content"     androID:orIEntation="vertical" >          <TextVIEw        androID:ID="@+ID/name"       androID:layout_wIDth="wrap_content"       androID:layout_height="wrap_content"       androID:textSize="20dp"       androID:textcolor="#f0f"       androID:paddingleft="10dp"/>                   <TextVIEw        androID:ID="@+ID/desc"       androID:layout_wIDth="wrap_content"       androID:layout_height="wrap_content"       androID:textSize="14dp"       androID:paddingleft="10dp"/>        </linearLayout>  </linearLayout> 


package com.example.simpleadptertest;  import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map;  import androID.app.Activity; import androID.os.Bundle; import androID.vIEw.Menu; import androID.Widget.ListVIEw; import androID.Widget.SimpleAdapter;  public class MainActivity extends Activity {    private String[] name = { "剑萧舞蝶","张三","hello","诗情画意" };    private String[] desc = { "魔域玩家","百家执行","高级的富一代","妹子请过来..一个善于跑妹子的。。" };    private int[] imageIDs = { R.drawable.libai,R.drawable.nongyu,R.drawable.qingzhao,R.drawable.tiger };      private ListVIEw lt1;    @OverrIDe   protected voID onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setContentVIEw(R.layout.activity_main);     List<Map<String,Object>> listems = new ArrayList<Map<String,Object>>();     for (int i = 0; i < name.length; i++) {       Map<String,Object> listem = new HashMap<String,Object>();       listem.put("head",imageIDs[i]);       listem.put("name",name[i]);       listem.put("desc",desc[i]);       listems.add(listem);     }          /*SimpleAdapter的参数说明      * 第一个参数 表示访问整个androID应用程序接口,基本上所有的组件都需要      * 第二个参数表示生成一个Map(String,Object)列表选项      * 第三个参数表示界面布局的ID 表示该文件作为列表项的组件      * 第四个参数表示该Map对象的哪些key对应value来生成列表项      * 第五个参数表示来填充的组件 Map对象key对应的资源一依次填充组件 顺序有对应关系      * 注意的是map对象可以key可以找不到 但组件的必须要有资源填充 因为 找不到key也会返回null 其实就相当于给了一个null资源      * 下面的程序中如果 new String[] { "name",R.ID.head}      * 这个head的组件会被name资源覆盖      * */     SimpleAdapter simplead = new SimpleAdapter(this,listems,R.layout.simple_item,new String[] { "name","desc" },new int[] {R.ID.name,R.ID.desc});          lt1=(ListVIEw)findVIEwByID(R.ID.lt1);     lt1.setAdapter(simplead);        }    @OverrIDe   public boolean onCreateOptionsMenu(Menu menu) {     // Inflate the menu; this adds items to the action bar if it is present.     getMenuInflater().inflate(R.menu.main,menu);     return true;   }  } 

总结

以上是内存溢出为你收集整理的举例讲解Android应用中SimpleAdapter简单适配器的使用全部内容,希望文章能够帮你解决举例讲解Android应用中SimpleAdapter简单适配器的使用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1149360.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存