I was looking at the answer for making a Custom CursorLoader, and was wondering that if the data changes would there will be a notification of the data changing so that the list updates?

link|improve this question

61% accept rate
feedback

2 Answers

You could call notifyDataSetChanged on your adapter so that the ListView will display the updated cursor content.

From the documentation:

Notifies the attached observers that the underlying data has been changed and any View reflecting the data set should refresh itself.

link|improve this answer
notifyDataSetChanged does not requery the adapters data. It only tells the ListView "Hey my data changed so you should repopulate the list with my current adapter" That is all it does... – Jona Dec 10 '11 at 14:43
feedback

I'm using the compatibility library loader framework. When content changes I just call this and everything gets updated:

    getSupportLoaderManager().getLoader(YOUR_LOADER).onContentChanged();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.