我正在扩展BaseAdapter以制作自定义列表视图行。我有上下文菜单,每当用户持有该行时会打开,并提示他是否要删除它。但是我该如何删除该行? hashmap只是测试数据。
private MyListAdapter myListAdapter;
private ArrayList<HashMap<String, String>> items;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
items = new ArrayList<HashMap<String,String>>();
HashMap<String, String> map1 = new HashMap<String, String>();
map1.put("date", "10/09/2011");
map1.put("distance", "309 km");
map1.put("duration", "1t 45min");
items.add(map1);
myListAdapter = new MyListAdapter(this, items);
setListAdapter(myListAdapter);
getListView().setOnCreateContextMenuListener(this);
}
private class MyListAdapter extends BaseAdapter {
private Context context;
private ArrayList<HashMap<String, String>> items;
public MyListAdapter(Context context, ArrayList<HashMap<String, String>> items) {
this.context = context;
this.items = items;
}
@Override
public int getCount() {
return items.size();
}
@Override
public Object getItem(int position) {
return items.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
if (view == null) {
LayoutInflater layoutInflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = layoutInflater.inflate(R.layout.row_log, null);
}
TextView rowLogOverview = (TextView) view.findViewById(R.id.rowLogOverview);
HashMap<String, String> item = items.get(position);
rowLogOverview.setText(item.get("date"));
return view;
}
}
答案 0 :(得分:16)
您不要从适配器中删除!你从项目中删除!并且适配器位于您的项目和视图之间。从视图中您可以获取位置,并根据位置删除项目。然后适配器将刷新您的视图。
这意味着你需要做这样的事情
items.remove(position);
adapter.notifyDataSetChanged()
答案 1 :(得分:11)
要删除,您需要做两件事:
.remove()
。.notifyDataSetChanged()
班级MyListAdapter
的实例mListAdapter
。答案 2 :(得分:1)
BaseAdapter.notifyDataSetChanged()
。然后将重新绘制listview,并从屏幕中删除目标行。答案 3 :(得分:0)
您应该在适配器上添加一个Listener来处理删除事件。
public YourAdapter(Context context, List<T> rows, View.OnClickListener deleteListener)
{ ... }
在你的getView()方法中设置监听器
yourBtn.setOnClickListener(this.deleteListener);
您可以在btn标记上添加一个值来标识当前行:
yourBtn.setTag(position);
最后,在您的Activity上,您的侦听器将使用标记中的当前位置触发。然后,您可以使用上一个答案更新适配器并刷新列表视图。
答案 4 :(得分:0)
在您的BaseAdapter中,添加代码:
public View getView(final int position, View convertView, ViewGroup parent) {
View v = convertView;
LayoutInflater layoutInflater = LayoutInflater.from(this.context);
v = layoutInflater.inflate(R.layout.items, null);
TextView buttonDelete = (TextView) v.findViewById(R.id.buttonDelete);
buttonDelete.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
item.remove(position);
notifyDataSetChanged();
}
});
return v;
}