I have a ListAdapter which is used to display a list in the Listview. Now I have added a longpress menu action for delete any selected item.

public boolean onContextItemSelected(MenuItem item) {

        AdapterView.AdapterContextMenuInfo menuInfo = (AdapterView.AdapterContextMenuInfo) item
                .getMenuInfo();
        final Long wordId = menuInfo.id;
        // selected_row = menuInfo.position;

        // To get the id of the clicked item in the list use menuInfo.id
        switch (item.getItemId()) {
        case CONTEXT_DELETE:
            deleteRes(wordId);  // delete function for the item
            break;
        default:
            return super.onContextItemSelected(item);

        }
        //((BaseAdapter) favAdapter).notifyDataSetChanged();
        return true;
    }

But after deletion the list is updating and showing the old list with deleted item. I tried to notifyDataSetChanged(), but it is working. What is the solution of the prob?

link|improve this question

77% accept rate
Are you sure the underlying data is deleted thru deleteRes(wordId);? – xandy Apr 6 '11 at 6:22
data is deleting properly...if i go to another section....and come back to that section...it is giving proper list. – dalandroid Apr 6 '11 at 6:33
Maybe you can post more codes, like the adapter, to see what's the problem. – xandy Apr 6 '11 at 7:41
feedback

5 Answers

delete the item from array/list, after that assign the array/list to adapter and after that write notifyDataSetChanged().

link|improve this answer
There is no array or list. It is a Cursor, that is supplied to the favAdapter(which is a ListAdapter) using "ListAdapter favAdapter = new SimpleCursorAdapter(this,android.R.layout.simple_list_item_1,favCursor,new String[] {WordDataHelper.ENGWORD},new int[] {android.R.id.text1});" – dalandroid Apr 6 '11 at 6:38
feedback

After you deleted the item from the list you have to get a new Cursor by doing a new query on the database. You can then change the cursor of your SimpleCursorAdapter (CursorAdapter) by calling changeCursor() with the new cursor as a parameter.

link|improve this answer
feedback

use getListView().invalidateViews after deletion.

link|improve this answer
feedback
  1. Delete the item from your database with a query
  2. Either get a new cursor, or requery the old one adapter.getCursor().requery()
  3. Call adapter.notifyDatasetChanged
link|improve this answer
I think requery() is deprecated. – Flo Apr 6 '11 at 17:28
So it is. Never used it anyway. – Joseph Earl Apr 6 '11 at 17:40
feedback
up vote 0 down vote accepted

I used the following code and the problem is solved.

favCursor  = wordDataHelper.getCursorFav();
((SimpleCursorAdapter) favAdapter).changeCursor(favCursor);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.