Once I have issued notifyDataSetChanged
on my custom BaseAdapter
, is there a way to cancel the refresh of the adapter?
For example, I return to some screen and notifyDataSetChanged
has been called to refresh the ListView
or GridView
. A user then opens another screen before the refresh has been finished and the adapter refresh is cancelled since no longer needed.
I hope I explained this well. If something isn't clear, please let me know so that I can explain it a bit more.