Right now I use setAdapter to update my ListView, but I think the proper way is to use notifiyDatasetChanged() and I can\'t get that to work in my main class (it\'s in the a
Dont call the notifyDataSetChanged(); method while creation.
only call it when content of your listViewScore changes.. and to use it at that time-
replace
listView.getAdapter().notifyDatasetChanged();
with
((ScoreListAdapter)listView.getAdapter()).notifyDataSetChanged();
and see the magic...
thanks.