Home | History | Annotate | Download | only in sync-adapters

Lines Matching full:observer

165     this, you register an observer for the content provider. When data in your content provider
166 changes, the content provider framework calls the observer. In the observer, call
178 To create an observer for your content provider, extend the class
185 To register the observer, pass it as an argument in a call to
262 * Create a content observer object.
266 TableObserver observer = new TableObserver(false);
268 * Register the observer for the data table. The table's path
269 * and any of its subpaths trigger the observer.
271 mResolver.registerContentObserver(mUri, true, observer);