ListView怎么绑定数据源 20
1个回答
展开全部
是android 的listview 吗?
我这儿有个例子希望对你有帮助
ArrayList<HashMap<String, Object>> users = new ArrayList<HashMap<String, Object>>();
HashMap<String, Object> user = new HashMap<String, Object>();
user.put("Money", money1);
user.put("Detail_type", detail_type1);
users.add(user);
SimpleAdapter saImageItems = new SimpleAdapter(XX.this,
users,// 数据来源
R.layout.XX,//每一个user xml 相当ListView的一个组件
new String[] {"Detail_type","Money"},
// 分别对应view 的id
new int[] { R.id.type ,R.id.money});
// 获取listview
ListView List= (ListView)findViewById(R.id.show);// 要显示的listView id
List.setAdapter(saImageItems);
我这儿有个例子希望对你有帮助
ArrayList<HashMap<String, Object>> users = new ArrayList<HashMap<String, Object>>();
HashMap<String, Object> user = new HashMap<String, Object>();
user.put("Money", money1);
user.put("Detail_type", detail_type1);
users.add(user);
SimpleAdapter saImageItems = new SimpleAdapter(XX.this,
users,// 数据来源
R.layout.XX,//每一个user xml 相当ListView的一个组件
new String[] {"Detail_type","Money"},
// 分别对应view 的id
new int[] { R.id.type ,R.id.money});
// 获取listview
ListView List= (ListView)findViewById(R.id.show);// 要显示的listView id
List.setAdapter(saImageItems);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询