Can content provider notify observer without calling NotifyChange() explicity - Android
- by Amit
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.