Lines Matching full:link
8 <li>{@link android.app.Activity}</li>
9 <li>{@link android.app.Service}</li>
10 <li>{@link android.content.BroadcastReceiver}</li>
11 <li>{@link android.content.ContentProvider}</li>
12 <li>{@link android.content.Intent}</li>
97 link to it. Rather, it simply starts up that piece of the other application
121 Each one is implemented as a subclass of the {@link android.app.Activity} base class.
144 objects derived from the base {@link android.view.View} class. Each view
157 <code>{@link android.app.Activity#setContentView Activity.setContentView()}</code>
168 that need it. Each service extends the {@link android.app.Service} base class.
206 announcements it considers important. All receivers extend the {@link
213 the {@link android.app.NotificationManager} to alert the user. Notifications
224 The content provider extends the {@link android.content.ContentProvider} base
227 do not call these methods directly. Rather they use a {@link
254 called <i>intents</i>. An intent is an {@link android.content.Intent}
271 Intent object to <code>{@link android.content.Context#startActivity
272 Context.startActivity()}</code> or <code>{@link
276 <code>{@link android.app.Activity#getIntent getIntent()}</code> method.
277 Android calls the activity's <code>{@link
287 calling activity's <code>{@link android.app.Activity#onActivityResult
293 service) by passing an Intent object to <code>{@link
295 Android calls the service's <code>{@link android.app.Service#onStart
299 Similarly, an intent can be passed to <code>{@link
303 an <code>{@link android.app.Service#onBind onBind()}</code> call.
319 methods like <code>{@link
321 <code>{@link android.content.Context#sendOrderedBroadcast(Intent, String)
322 Context.sendOrderedBroadcast()}</code>, and <code>{@link
325 broadcast receivers by calling their <code>{@link
356 <code>{@link android.app.Activity#finish finish()}</code> method. One activity can
358 calling <code>{@link android.app.Activity#finishActivity finishActivity()}</code>.</li>
361 <code>{@link android.app.Service#stopSelf stopSelf()}</code> method, or by calling
362 <code>{@link
410 element names the {@link android.app.Activity} subclass that implements the
427 (as {@link android.content.BroadcastReceiver} objects)
429 <code>{@link android.content.Context#registerReceiver Context.registerReceiver()}</code>.
500 intent filter is instantiated directly as an {@link android.content.IntentFilter}
619 <dt>The <code>{@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK}</code> flag</dt>
675 <code>{@link android.content.Context#startActivity startActivity()}</code>)
677 <code>{@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK}</code> flag.
759 <code>{@link android.app.Activity#onNewIntent onNewIntent()}</code> call.
761 calling <code>{@link android.app.Activity#getIntent getIntent()}</code>.)
824 If an Intent object includes the <code>{@link
928 <code>{@link android.view.View#onKeyDown View.onKeyDown()}</code> that report
969 Threads are created in code using standard Java {@link java.lang.Thread}
971 threads — {@link android.os.Looper} for running a message loop within
972 a thread, {@link android.os.Handler} for processing messages, and
973 {@link android.os.HandlerThread} for setting up a thread with a message loop.
1015 Both inner classes implement the {@link android.os.IBinder}
1018 The other, called Stub, extends the {@link android.os.Binder}
1040 <code>{@link android.content.ServiceConnection#onServiceConnected
1042 <code>{@link android.content.ServiceConnection#onServiceDisconnected
1046 <code>{@link android.content.Context#bindService bindService()}</code>
1051 The service's <code>{@link android.app.Service#onBind onBind()}</code>
1069 Interface Using AIDL</a> and the {@link android.os.IBinder IBinder} class
1104 <code>{@link
1105 <code>{@link android.content.ContentProvider#insert insert()}</code>,
1106 <code>{@link android.content.ContentProvider#delete delete()}</code>,
1107 <code>{@link android.content.ContentProvider#update update()}</code>, and
1108 <code>{@link android.content.ContentProvider#getType getType()}</code>
1155 by asking it to finish (calling its {@link android.app.Activity#finish finish()}
1176 <code>{@link android.app.Activity#onCreate onCreate()}</code> to do the
1178 Many will also implement <code>{@link android.app.Activity#onPause onPause()}</code>
1206 to <code>{@link android.app.Activity#onCreate onCreate()}</code> through to a
1207 single final call to <code>{@link android.app.Activity#onDestroy}</code>.
1215 <code>{@link android.app.Activity#onStart onStart()}</code> until a
1216 corresponding call to <code>{@link android.app.Activity#onStop onStop()}</code>.
1220 For example, you can register a {@link android.content.BroadcastReceiver} in
1227 to <code>{@link android.app.Activity#onResume onResume()}</code> until a
1228 corresponding call to <code>{@link android.app.Activity#onPause onPause()}</code>.
1264 <td colspan="3" align="left"><code>{@link android.app.Activity#onCreate onCreate()}</code></td>
1278 <td colspan="2" align="left"><code>{@link android.app.Activity#onRestart
1288 <td colspan="2" align="left"><code>{@link android.app.Activity#onStart onStart()}</code></td>
1298 <td align="left"><code>{@link android.app.Activity#onResume onResume()}</code></td>
1308 <td align="left"><code>{@link android.app.Activity#onPause onPause()}</code></td>
1322 <td colspan="2" align="left"><code>{@link android.app.Activity#onStop onStop()}</code></td>
1334 <td colspan="3" align="left"><code>{@link android.app.Activity#onDestroy
1338 activity is finishing (someone called <code>{@link android.app.Activity#finish
1341 between these two scenarios with the <code>{@link
1388 an <code>{@link android.app.Activity#onSaveInstanceState
1392 passes the method a {@link android.os.Bundle} object where you can record
1395 method that's called after {@code onStart()}, <code>{@link
1452 <code>{@link android.content.Context#startService Context.startService()}</code>
1454 <code>{@link android.content.Context#stopService Context.stopService()}</code>.
1456 <code>{@link android.app.Service#stopSelf() Service.stopSelf()}</code> or
1457 <code>{@link android.app.Service#stopSelfResult Service.stopSelfResult()}</code>.
1465 <code>{@link android.content.Context#bindService Context.bindService()}</code>,
1467 <code>{@link android.content.Context#unbindService Context.unbindService()}</code>.
1503 <code>{@link android.app.Service#onCreate onCreate()}</code> is called and
1504 the time <code>{@link android.app.Service#onDestroy}</code> returns.
1511 <code>{@link android.app.Service#onStart onStart()}</code>. This method
1525 <code>{@link android.content.Context#startService Context.startService()}</code>
1527 <code>{@link android.content.Context#bindService Context.bindService()}</code>.
1542 The <code>{@link android.app.Service#onBind onBind()}</code> callback is passed
1544 <code>{@link android.app.Service#onUnbind onUnbind()}</code> is handed
1549 <code>{@link android.app.Service#onRebind onRebind()}</code>
1575 <code>{@link android.content.BroadcastReceiver#onReceive onReceive()}</code>
1624 (the Activity object's <code>{@link android.app.Activity#onResume
1630 <li><p>It has a {@link android.app.Service} object that's executing
1631 one of its lifecycle callbacks (<code>{@link android.app.Service#onCreate
1632 onCreate()}</code>, <code>{@link android.app.Service#onStart onStart()}</code>,
1633 or <code>{@link android.app.Service#onDestroy onDestroy()}</code>).</p></li>
1635 <li><p>It has a {@link android.content.BroadcastReceiver} object that's
1636 executing its <code>{@link android.content.BroadcastReceiver#onReceive
1655 to the user (its <code>{@link android.app.Activity#onPause onPause()}</code>
1669 <code>{@link android.content.Context#startService startService()}</code>
1680 <code>{@link android.app.Activity#onStop onStop()}</code> method has been called).