listview数据的添加

/**
* 加载notification内容
*/
private void loadNotifiListView() {
notifiListView = (ListView) findViewById(R.id.notifi_list);
ArrayList list = new ArrayList();
HashMap map;
map = new HashMap();
map.put("id", 1);
map.put("notiIcon", R.drawable.ic_launcher);
map.put("notiInfo",
"您的支付P123456798已经生成,请确认付款之后通过Live Chat联系SEAGM在线客服在核实汇款信息后将为您支付订单。");
map.put("notiTime", "2 hours ago");
list.add(map);
map = new HashMap();
map.put("id", 2);
map.put("notiIcon", R.drawable.ic_launcher);
map.put("notiInfo",
"您的支付P123456798已经生成,请确认付款之后通过Live Chat联系SEAGM在线客服在核实汇款信息后将为您支付订单。");
map.put("notiTime", "2 hours ago");
list.add(map);
SimpleAdapter adapter = new SimpleAdapter(this, list,
R.layout.notification_list_item, new String[] { "notiIcon",
"notiInfo", "notiTime" }, new int[]{R.id.item_image,R.id.item_info,R.id.item_time});
notifiListView.setAdapter(adapter);
notifiListView.setOnItemClickListener(new OnItemClickListener() {

@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// TODO Auto-generated method stub
HashMap map = (HashMap) parent.getItemAtPosition(position);
Log.e("error123", map.get("id").toString());
}
});
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值