Skip to content Skip to sidebar Skip to footer

Content Observer Changes

If I register a content observer on say the calendar database is there a way to get exactly what changed in the database when an event gets edited?

Solution 1:

Can't be done...Diane Hackborn claims it's intentional. You'll have to requery or use a sync adapter.

Solution 2:

Make use of shared preferences and content providers along with content observer.

When I read the DB, I know that I have read all the entries until the time stored in shared preferences. So each time I read DB, I need to check for all the changes after the time that was stored in shared preferences and update the time in the shared preferences to current time(after doing whatever you wanted to do with these new entries).

Post a Comment for "Content Observer Changes"