Android 之 ListView使用SimpleAdapter展示列表

本文介绍了一种常用的Android适配器——SimpleAdapter,并提供了一个具体的实现案例。通过自定义XML布局文件,展示了如何创建一个包含多列数据的列表项,并利用SimpleAdapter将其显示在一个ListView中。
摘要由CSDN通过智能技术生成

SimpleAdapter是用的比较多的一种adapter,它的拓展性很好,可以自己定义布局,也可以设置一些图片等。

对于SimpleAdapter一般都需要自定义一个xml文件,是一个列表行的布局文件。

simpleitem.xml

<?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" >

    <TextView
        android:id="@+id/id"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:layout_weight="2" />

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:layout_weight="10"/>

    <TextView
        android:id="@+id/age"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_weight="3"/>

</LinearLayout>

SimpleAdapterDemo.java

package com.example.phonedemo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.example.phonedemo.util.Utils;

import android.app.Activity;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.SimpleAdapter;

public class SimpleAdapterDemo extends Activity {

    private ListView listView = null;
    private LinearLayout layout = null;
    private List<Map<String, Object>> list = null;
    private SimpleAdapter adapter = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        this.layout = new LinearLayout(this);
        this.layout.setOrientation(LinearLayout.VERTICAL);
        this.listView = new ListView(this);
        list = initList();
        adapter = new SimpleAdapter(this, list, R.layout.simpleitem,
                new String[] { "id", "name", "age" }, new int[] { R.id.id,
                        R.id.name, R.id.age });
        this.listView.setAdapter(adapter);
        this.layout.addView(this.listView, Utils.match);
        super.addContentView(this.layout, Utils.match);
    }

    private List<Map<String, Object>> initList() {
        List<Map<String, Object>> temp = new ArrayList<Map<String, Object>>();
        Map<String, Object> map = null;
        for (int i = 0; i < 20; i++) {
            map = new HashMap<String, Object>();
            map.put("id", i);
            map.put("name", "张三" + i + "号");
            map.put("age", 28);
            map.put("email", "zhangsan@163.com");
            temp.add(map);
        }
        return temp;
    }
}

 

 

转载于:https://www.cnblogs.com/waddell/archive/2013/04/16/3402974.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值