In my app I am working with ExpandableListView
. I am using adapter which extends BaseExpandableListAdapter
. I want to refresh the ExpandableListView
.
My ExpandableListView
consists of items with delete button which links with database.
If I'll press the delete button that item is permanently deleted from db. But the listview
is not refreshing at the same time. If I again run that activity its refreshing but not at same time.
I am using
mAdapter.notifyDataSetChanged();
but its not working as I want. Why?
Cursor
also..? – Poppy