我试图使用一个使用multiChoiceItems显示ArrayList的对话框。我想查看要删除的项目,单击按钮删除/关闭对话框,并在下次打开对话框时删除项目。
当我调试下面的代码时,我发现我为所选的每个项目都进行了循环,但实际上并没有删除任何项目。我觉得我在这里错过了一些可能非常微不足道的东西,我希望得到一些帮助!
我知道如果删除多个项目,我必须考虑更改索引,所以不要担心。在我可以自行删除第一个项目后,我会这样做!
非常感谢!
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Title");
mSelectedItems.clear();
builder.setMultiChoiceItems(myList,null,
new DialogInterface.OnMultiChoiceClickListener(){
@Override
public void onClick(DialogInterface dialog,int which, boolean isChecked){
if (isChecked) {
// If the user checked the item, add it to the selected items
mSelectedItems.add(which);
} else if (mSelectedItems.contains(which)) {
// Else, if the item is already in the array, remove it
mSelectedItems.remove(Integer.valueOf(which));
}
}
});
builder.setPositiveButton("Remove from list", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
for(int i=0;i<mSelectedItems.size();i++){
arrayChoices.remove(mSelectedItems.get(i));
}
myList = arrayChoices.toArray(new CharSequence[arrayChoices.size()]);
}
});
builder.setNegativeButton("End", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
builder.show();
答案 0 :(得分:0)
将mSelectedItems.get(i)转换为int并且它工作正常。它显示mSelectedItems.get(i)是一个调试中的整数,虽然这让我想知道为什么它还没有工作。