I am trying to figure out how I \"Refresh\" the list view the user is on when an item from my listview is deleted. I have tried notifyDataSetChanged() but to no avail, which is
You can perfectly remove item from adapter by using following code.
mCollection.remove(position); mListLayout.removeAllViews(); notifyDataSetChanged();