I am trying to implement ListView with Delete functionality to delete item from the listview. I am successful to delete but failed to refresh the listview after deletetion o
I did something like this in my adapter:
((Activity)cxt).finish(); Intent intent = new Intent(cxt, YourActivity.class); cxt.startActivity(intent);
This ends the activity and then starts the same one again.