Lines Matching refs:link
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
30 sending it an {@link android.content.Intent}. This {@link android.content.Intent} can
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
33 in an {@link android.app.Activity} or {@link android.app.Fragment}
37 To create a work request and send it to an {@link android.app.IntentService}, create an
38 explicit {@link android.content.Intent}, add work request data to it, and send it to
39 {@link android.app.IntentService} by calling
40 {@link android.content.Context#startService startService()}.
47 Create a new, explicit {@link android.content.Intent} for the
48 {@link android.app.IntentService} called <code>RSSPullService</code>.
61 Call {@link android.content.Context#startService startService()}
74 Once you call {@link android.content.Context#startService startService()},
75 the {@link android.app.IntentService} does the work defined in its
76 {@link android.app.IntentService#onHandleIntent onHandleIntent()} method, and then stops itself.
81 {@link android.content.BroadcastReceiver}.