Lines Matching full:observer
175 this, you register an observer for the content provider. When data in your content provider
176 changes, the content provider framework calls the observer. In the observer, call
188 To create an observer for your content provider, extend the class
195 To register the observer, pass it as an argument in a call to
271 * Create a content observer object.
275 TableObserver observer = new TableObserver(false);
277 * Register the observer for the data table. The table's path
278 * and any of its subpaths trigger the observer.
280 mResolver.registerContentObserver(mUri, true, observer);