I have created a small application, trying to understand the functionality of the LoaderManager and CursorLoader-classes.

I have implemented LoaderCallbacks<Cursor> on my FragmentActivity-class and everything works fine, except the fact that when I update my data via ContentResolver.update() or ContentResolver.insert()-methods, onLoadFinished() is not called and as a result my data doesn't update.

I have a custom ContentProvider and I am wondering if the problem is in my ContentProvider not notifying that the data changed or something else.

link|improve this question
1  
do you call getContext().getContentResolver().notifyChange(Uri,..); in your update/insert ContentProvider methods implementation ? do you call cursor.setNotificationUri(getContext().getContentResolver(), uri); before return it from query method in your ContentProvider – Selvin Oct 27 '11 at 11:19
Nope, I didn't, that was the problem! Thanks! :) – Antonis Oct 27 '11 at 12:19
feedback

1 Answer

up vote 5 down vote accepted

Did you call setNotificationUri(ContentResolver cr, Uri uri) on the Cursor before returning it in ContentProvider.query()?

And did you call getContext().getContentResolver().notifyChange(uri, null) in the 'insert' method of your ContentProvider?

EDIT:

To get a ContentResolver call getContext().getContentResolver() in your ContentProvider.

link|improve this answer
Thanks for the fast reply!Seems like this is the problem, how can I get a ContentResolver from the ContentProvider to put it in setNotificationUri()? EDIT: I found it, just use getContext().getCntentProvider() – Antonis Oct 27 '11 at 11:31
feedback

Your Answer

 
or
required, but never shown

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