Lines Matching full:link
3 parent.link=index.html
90 inherit from an {@link android.app android.app} class, typically {@link android.app.Activity
91 android.app.Activity} for basic screens, {@link android.app.ListActivity
92 android.app.ListActivity} for list screens, or {@link android.app.Dialog
131 <li>{@link android.app.Activity android.app.Activity} - This is a standard screen,
133 <li>{@link android.app.ListActivity android.app.ListActivity} - This is a screen
137 <li>{@link android.app.Dialog android.app.Dialog} - This is a small, popup dialog-style
159 <li>Create an {@link android.app.Dialog app.Dialog} class </li>
160 <li>Create an {@link android.app.AlertDialog app.AlertDialog} class </li>
161 <li>Set the {@link android.R.style#Theme_Dialog} <em>theme</em> attribute to <code>@android:style/Theme.Dialog</code>
173 calling {@link android.app.Activity#startActivity(android.content.Intent) startActivity}
174 and passing in an {@link android.content.Intent Intent} object, which specifies
181 {@link android.content.Intent Intent} topic. </p>
201 defined by {@link android.content.Intent}. You can define custom values, but
208 into the calling Activity's {@link android.app.Activity#onActivityResult(int,int,android.content.Intent)
210 the request code passed to startActivityForResult(). Note that you must call the {@link
265 <p>An activity can remove itself from the history stack by calling {@link android.app.Activity#finish()
267 {@link android.app.Activity#finishActivity(int) Activity.finishActivity()}
274 calling methods on the {@link android.view.Window Window} member
275 of the underlying View object for the window. Examples include calling {@link
277 method {@link android.app.Activity#requestWindowFeature(int) requestWindowFeature(<em>some_feature</em>)})
302 as well as class member values. Android calls {@link android.app.Activity#onSaveInstanceState(android.os.Bundle)
303 Activity.onSaveInstanceState} before it pauses the application. This method hands in a {@link
306 Android will pass this Bundle back to you when it calls {@link android.app.Activity#onCreate(android.os.Bundle)
309 the application is finalized. See the topics for {@link android.app.Activity#onSaveInstanceState} and
310 {@link android.app.Activity#onCreate} for
326 <p>The listening classes, called broadcast receivers, extend {@link android.content.BroadcastReceiver
331 will get a call to their {@link android.content.BroadcastReceiver#onReceive(android.content.Context,android.content.Intent)
337 <p>To send a notification, the caller creates an {@link android.content.Intent Intent}
338 object and calls {@link android.app.Activity#sendBroadcast(android.content.Intent)
343 and register a receiver by calling {@link android.content.Context#registerReceiver(android.content.BroadcastReceiver,android.content.IntentFilter)
348 the caller specifies the receiver's class name in the Intent by calling {@link
350 with the recipient's class name. The recipient receives a {@link android.content.Context
390 {@link android.content.Intent} for a list of broadcast messages to listen for.
393 <p>The {@link android.telephony android.telephony} package overview page describes how to
396 <p>Android provides an {@link android.app.AlarmManager AlarmManager} service that
399 a notification to a sleeping or running application, use {@link android.os.Handler
419 <td>{@link android.app.Dialog app.Dialog}</td>
423 <td><p>{@link android.app.AlertDialog app.AlertDialog}</p></td>
428 <td>{@link android.app.ProgressDialog ProgressDialog} </td>
436 {@link android.R.style#Theme_Dialog
441 {@link android.R.attr#theme android:theme} attribute in your AndroidManifest.xml.
445 you cannot recapture state, whereas Application exposes a {@link android.os.Bundle
451 and callback. You can create one by calling using the {@link
497 {@link android.app.NotificationManager}, which allows you to tell the user
523 the user selects it (such as the new text message notification does), call {@link
529 To display a progress bar in a screen, call {@link android.app.Activity#requestWindowFeature(int)
531 of the progress bar, call {@link android.view.Window#setFeatureInt(int,int)
535 <p>You can also use the {@link android.app.ProgressDialog ProgressDialog} class,
542 <p>Use the {@link android.webkit.WebView webkit.WebView} object. </p>
545 {@link android.widget.ListAdapter ListAdapter} (or a subclass). ListAdapter subclasses
577 <p>You can get a handle to a screen element by calling {@link
582 {@link android.hardware.Camera Camera} class. See that class's documentation,
594 <li>Post results from a worker thread back to the UI thread's handler either through a Runnable or a {@link android.os.Message}</li>
643 and the {@link android.os.Handler} documentation.</p>
664 <p>To style text on the fly, you must make sure the TextView is using {@link android.text.Spannable}
666 retrieve its text with {@link android.widget.TextView#getText}, and call {@link
667 android.text.Spannable#setSpan}, passing in a new style class from the {@link
753 <td valign="top">(<em>optional</em>) Zero or more files that will be compiled to {@link
804 (See the {@link android.util.Log} class.)<br/> E.g.,