Lines Matching refs:IntentService
9 <a href="#CreateRequest">Create and Send a Work Request to an IntentService</a>
28 The previous lesson showed you how to create an {@link android.app.IntentService} class. This
29 lesson shows you how to trigger the {@link android.app.IntentService} to run an operation by
31 optionally contain data for the {@link android.app.IntentService} to process. You can
32 send an {@link android.content.Intent} to an {@link android.app.IntentService} from any point
35 <h2 id="CreateRequest">Create and Send a Work Request to an IntentService</h2>
37 To create a work request and send it to an {@link android.app.IntentService}, create an
39 {@link android.app.IntentService} by calling
48 {@link android.app.IntentService} called <code>RSSPullService</code>.
53 * IntentService. Passes a URI in the
64 // Starts the IntentService
75 the {@link android.app.IntentService} does the work defined in its
76 {@link android.app.IntentService#onHandleIntent onHandleIntent()} method, and then stops itself.