如何从列表视图中删除所选项?

时间:2011-02-14 14:48:30

标签: java android

我想知道如何从用户界面上的ListView中删除项目(用户可以选择)。 ListView仅保存显示IP地址的TextView。现在,当我按下一个按钮(删除)时,我想从ListView中删除所选项目。

现在,我通过使用ArrayList跟踪所选项目,ArrayList保存项目的索引。我已将ListView的choiceMode设置为multipleChoice,因此这些索引应该准确。 我不知道最好的方法,但我的方式是这样的:

mEndPointList.setOnItemClickListener(new OnItemClickListener(){
    @Override
    public void onItemClick(AdapterView<?> arg0, View arg1,
            int arg2, long arg3){
        boolean found = false;
        int index = 0;
        while(!found && index >= 0 && index < mSelectedItems.size()){
            if(mSelectedItems.get(index).intValue() == arg2){
                found = true;
            }
            index++;
        }
        if(!found){
            mSelectedItems.add(new Integer(arg2));
        }
    }
});

现在,当我完成选择项目后,按下“删除”按钮,该按钮将删除存储的索引处的项目。按钮中的代码如下所示:

public class RemoveItemButtonHandler implements OnClickListener{
    @Override
    public void onClick(View v){
        for(int index = 0; index < mSelectedItems.size(); index++){
            int selectedItemIndex = mSelectedItems.get(index);
            mEndPointList.removeViews(selectedItemIndex, 1);
        }

        mSelectedItems.clear();
        mEndPointList.postInvalidate();
    }
}

此代码作为“删除”按钮的onClickListener添加。 代码将执行没有任何问题,但Item不会从ListView中删除。 有没有人知道为什么它不起作用?


我想,如果有人想知道我是如何做到的,那么展示我的解决方案是公平的。 选择在列表的OnItemClickListener中完成:

mEndPointList = ((ListView) findViewById(R.id.endpointList));
mEndPointList.setOnItemClickListener(new OnItemClickListener(){
    @Override
    public void onItemClick(AdapterView<?> arg0, View arg1,
            int arg2, long arg3){
        boolean found = false;
        int index = 0;
        /* Loop through all current selected item indexes to see if
         * there is a match. If not, add the index to the list of
         * selected indexes. If the index is already present, remove
         * the index from the list. */
        while(!found && index >= 0 && index < mSelectedItems.size()){
            if(mSelectedItems.get(index).intValue() == arg2){
                found = true;
                mSelectedItems.remove(index);
            }
            index++;
        }
        if(!found){
            mSelectedItems.add(new Integer(arg2));
        }
        mSelectedItems.trimToSize();
    }
});

删除项目的方式如下:

public class RemoveItemButtonHandler implements OnClickListener{
    @Override
    public void onClick(View v){
        // Check to see if any items are selected.
        if(mSelectedItems.size() == 0){
            String message = "No items selected.\nTo select, press once on item.\n" +
                             "To unselect, press item again.";
            Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG).show();
            return;
        }
        // Sort the selected item indexes from high to low to prevent List corruption.
        Collections.sort(mSelectedItems, new DescendingComparator());
        /* Iterate through the selected items and remove items from the EndPoint List
         * using the selected item index. Corruption of the List is prevented by
         * sorting the selected items list from high to low, thus the item with the
         * highest index is removed first. */
        if(mRawEndPoints.size() > 1){
            for(int index = 0; index < mSelectedItems.size(); index++){
                int selectedItemIndex = mSelectedItems.get(index);              
                mRawEndPoints.remove(mListAdapter.getItem(selectedItemIndex));
            }
            // Update the Adapter to notify it's data has changed.
            mListAdapter.notifyDataSetChanged();
        } else {
            String message = "Cannot remove last item from the list.";
            Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG).show();
        }
        // Clear the List of selected items for a fresh selection.
        mSelectedItems.clear();
    }
}

请注意,DescendingComparator类是一个自定义类,它实现了Comparator<Integer>接口。

1 个答案:

答案 0 :(得分:4)

不是调用列表的postInvalidate()方法,而是调用列表适配器的notifyDataSetChanged


哦等等......我只是重新阅读你的代码。您正试图从列表中删除视图:S您不能这样做。 ListView只是一个显示数据的小部件;该数据由适配器支持,该适配器实际上是数据。在您的情况下,您要做的是从数组中删除项目,然后通知该更改(使用适配器;最终将导致ListView更新)。