Android:如何刷新自定义SimpleAdapter中项目删除的列表

时间:2011-12-05 19:23:23

标签: android listview notify delete-row simpleadapter

在我删除自定义SimpleAdapter中的地图列表项后,我是否知道如何刷新ListView项?

我已经使用list.remove(position)成功实现了删除列表项,但是当我尝试调用list.notifyAll()函数但它给了我一条错误消息,例如“java.lang.IllegalMonitorStateException:object not locked by在notifyAll()之前的线程。

我希望你能帮助我。以下是自定义SimpleAdapter的代码。

public class DeleteAdapter extends SimpleAdapter {

    Context context;
    List<? extends Map<String, ?>> list;
    int resource;
    String[] from;
    int[] to;

    public FDeleteAdapter(Context context, List<? extends Map<String, ?>> data,
            int resource, String[] from, int[] to) {
        super(context, data, resource, from, to);

        this.context = context;
        this.list = data;
        this.resource = resource;
        this.from = from;
        this.to = to;
        // TODO Auto-generated constructor stub
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {

        final View row = super.getView(position, convertView, parent);

        final Button delete = (Button) row.findViewById(R.id.deletebut);
        final TextView title = (TextView) row.findViewById(R.id.label);

        delete.setOnClickListener(new OnClickListener() {

            public void onClick(View view) {

                deleteDialog xdialog = new deleteDialog(context, "Delete? ", position) {

                    @Override
                    public boolean onOkClicked() {

                        list.remove(position);
                        list.notifyAll();

                        return true;
                    }
                };
                xdialog.show();
            }
        });

        return row;
    }
};

提前感谢您的帮助。

2 个答案:

答案 0 :(得分:5)

您应该在列表中调用适配器的notifyDataSetChanged()功能,而不是notifyAll()

答案 1 :(得分:1)

使用

 this.notifyDataSetChange();