如何在 Android ListView 中添加按钮?

2024-11-18 14:08:36
推荐回答(1个)
回答1:

//用简单适配器(simpleAdapter)加载一个重新定义的布局文件
/*
*context :上下文
*data:一个Map集合。集合中的中的每个条目对应于ListView中的一行。Map包含每一行的数据,应该包括所有的条目中指定的“from”
*resource:需要加载的布局文件
*from:A list of column names that will be added to the Map associated with each
item。(安卓系统源码的解释,其实就是加载data中Map的key)
*to:布局文件里每一个控件的id
*/

//SimpleAdapter simpleAdapter=new SimpleAdapter(Context context, List> data,
// int resource, String[] from, int[] to)
//定义一个获得数据源的方法

private List> getdate() {

Map map = new HashMap<>();
map.put("button",R.id.button);
datalsit.add(map);
return datalsit;
}
//定义一个简单适配器

SimpleAdapter simpleAdapter=new SimpleAdapter(this, getdate(),
R.layout.item
, new String[] {"button"}, int[] {R.
id.button})
//listview加载这个适配器

listview.setAdapter(simpleAdapter);