问题我有带有复选框的自定义列表适配器视图我想在选中项目的基础上删除列表项目。这是我的代码
for(int i=0;i<adapter.getCount();i++)
{
System.out.println("Adapter Count:"+adapter.getCount());
if(checks.get(i)==true)
{
checks.put(i,false);
adapter.remove(feedbackList.get(i));
adapter.notifyDataSetChanged();
}
}
它几乎工作正常,项目正在删除,但有些项目即使检查也不会被删除......如果有人可以帮助我......提前致谢