Can content provider notify observer without calling NotifyChange() explicity - Android
Posted
by Amit
on Stack Overflow
See other posts from Stack Overflow
or by Amit
Published on 2010-03-14T09:13:06Z
Indexed on
2010/03/14
9:15 UTC
Read the original article
Hit count: 240
android-sdk
In ContentProvider we explicity notify all registered observers to it by calling
getContext().getResolver().notifyChange(URI,ContentObserver);
I want to know if this is necessary. Is there any possibility that observers get notified, even we don't use that statement at all in our contentProvider.
Is there any other way to do the same thing.
© Stack Overflow or respective owner