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?
deleteRes(wordId);? – xandy Apr 6 '11 at 6:22