1.作用是ArrayList和 ListView的桥梁。这个ArrayList里边的每一项都是一个Map<String,?>类型。
ArrayList当中的每一项 Map对象都和ListView里边的每一项进行数据绑定一一对应。
2.SimpleAdapter的构造函数:
SimpleAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to)
参数:
1.context:上下文。
2.data:基于Map的list。Data里边的每一项都和 ListView里边的每一项对应。Data里边的每一项都是一个Map类型,这个Map类里边包含了ListView每一行需要的数据。
3.resource :就是一个布局layout,可引用系统提供的,也可以自定义。
4.from:这是个名字数组,每个名字是为了在 ArrayList数组的每一个item索引Map<String,Object>的Object用的。即 map 中得key值
5.to:里面是一个TextView数组。这些 TextView是以id的形式来表示的。例如:Android.R.id.text1,这个text1在layout当中是可以索引的。
3.通过一个类子来理解下:
listitem.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”><TextView android:id=”@+id/TextView01″ android:layout_width=”100px”android:layout_height=”wrap_content” /><TextView android:id=”@+id/TextView02″android:layout_width=”wrap_content”android:layout_height=”wrap_content” /></LinearLayout>
下面是activity文件的部分代码
List<Map<String, Object>> data = new ArrayList<Map<String,Object>>();Map<String,Object> item;item = new HashMap<String,Object>();item.put(“姓名”,”张三”);item.put(“性别”,”男”);data.add(item);item = new HashMap<String,Object>();item.put(“姓名”,”李四”);item.put(“性别”,”女”);data.add(item); // 上面是构造数据部分。ListView listview= new ListView(this); //构造listview对象。SimpleAdapter adapter = new SimpleAdapter(this,data,R.layout.listitem,new String[]{“姓名”,”性别”},new int[]{R.id.TextView01,R.id.TextView02}); /*构造一个适配器。* 1,第三个参数是说明用的是自定义的布局R.layout.listtiem。* 2,第四和第五个参数一起理解:* 把我们添加数据时姓名那一列对应到R.id.TextView01这个TextView中,把性别对应到R.id.TextView02这个 TextView中。* 如果把from改为new String[]{“姓名”,”姓名”},测试下就会明白。 */listview.setAdapter(adapter);setContentView(listview);
转载于:https://blog.51cto.com/huyusheng/1925564