I have one ListView which is showing me some data through an array (which is in another class and I\'m accessing it through it\'s object).
Whenever I delete an elem
I have no notifyDataSetChanged() method (Android 2.3).
notifyDataSetChanged()
The following worked for me:
getListView().invalidate();
In my case I have changed the whole adapter and it still didn't refresh, so for me the method described above is the only working solution.