/frameworks/base/core/java/android/hardware/ |
SensorEventListener.java | 27 * <p>See {@link android.hardware.SensorManager SensorManager} 29 * <p>See also {@link android.hardware.SensorEvent SensorEvent}. 32 * {@link android.hardware.SensorEvent event} 37 * @param event the {@link android.hardware.SensorEvent SensorEvent}. 43 * <p>See {@link android.hardware.SensorManager SensorManager}
|
/frameworks/base/core/java/android/os/ |
ParcelFileDescriptor.java | 27 * The FileDescriptor returned by {@link Parcel#readFileDescriptor}, allowing 40 * For use with {@link #open}: if {@link #MODE_CREATE} has been supplied 47 * For use with {@link #open}: if {@link #MODE_CREATE} has been supplied 54 * For use with {@link #open}: open the file with read-only access. 59 * For use with {@link #open}: open the file with write-only access. 64 * For use with {@link #open}: open the file with read and write access. 69 * For use with {@link #open}: create the file if it doesn't already exist. 74 * For use with {@link #open}: erase contents of file when opening [all...] |
/frameworks/base/core/java/android/widget/ |
BaseAdapter.java | 25 * Common base class of common implementation for an {@link Adapter} that can be 26 * used in both {@link ListView} (by implementing the specialized 27 * {@link ListAdapter} interface} and {@link Spinner} (by implementing the 28 * specialized {@link SpinnerAdapter} interface.
|
/frameworks/base/docs/html/resources/tutorials/views/ |
hello-autocomplete.jd | 3 parent.link=index.html 7 the {@link android.widget.AutoCompleteTextView} widget. Suggestions are received from a 8 collection of strings associated with the widget through an {@link 11 <p>In this tutorial, you will create a {@link android.widget.AutoCompleteTextView} widget that 29 <p>This file defines a simple {@link android.widget.TextView} that will be used for each 50 <p>The {@link android.widget.TextView} is a label that introduces the {@link 54 <li>Open <code>HelloAutoComplete.java</code> and insert the following code for the {@link 68 <p>After the content view is set to the <code>main.xml</code> layout, the {@link 69 android.widget.AutoCompleteTextView} widget is captured from the layout with {@link [all...] |
hello-tablelayout.jd | 3 parent.link=index.html 7 <p>{@link android.widget.TableLayout} is a {@link android.view.ViewGroup} that 8 displays child {@link android.view.View} elements in rows and columns.</p> 91 <p>Notice how this resembles the structure of an HTML table. The {@link android.widget.TableLayout} 92 element is like the HTML <code><table></code> element; {@link android.widget.TableRow} is like 94 but for the cells, you can use any kind of {@link android.view.View} element. In this example, a 95 {@link android.widget.TextView} is used for each cell. In between some of the rows, there is also a 96 basic {@link android.view.View}, which is used to draw a horizontal line.</p> 100 {@link android.app.Activity#onCreate(Bundle) onCreate()} method [all...] |
/frameworks/base/telephony/java/android/telephony/ |
NeighboringCellInfo.java | 77 * @deprecated by {@link #NeighboringCellInfo(int, String, int)} 95 * @deprecated by {@link #NeighboringCellInfo(int, String, int)} 106 * {@link TelephonyManager#NETWORK_TYPE_GPRS TelephonyManager.NETWORK_TYPE_GPRS}, 107 * {@link TelephonyManager#NETWORK_TYPE_EDGE TelephonyManager.NETWORK_TYPE_EDGE}, 108 * {@link TelephonyManager#NETWORK_TYPE_UMTS TelephonyManager.NETWORK_TYPE_UMTS}, 109 * {@link TelephonyManager#NETWORK_TYPE_HSDPA TelephonyManager.NETWORK_TYPE_HSDPA}, 110 * {@link TelephonyManager#NETWORK_TYPE_HSUPA TelephonyManager.NETWORK_TYPE_HSUPA}, 111 * and {@link TelephonyManager#NETWORK_TYPE_HSPA TelephonyManager.NETWORK_TYPE_HSPA}. 205 * Return {@link TelephonyManager#NETWORK_TYPE_UNKNOWN TelephonyManager.NETWORK_TYPE_UNKNOWN} 208 * Return {@link TelephonyManager#NETWORK_TYPE_GPRS TelephonyManager.NETWORK_TYPE_GPRS} o [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
TtyIntent.java | 40 * {@link android.content.Intent#getBooleanExtra(String,boolean)}. 59 * - {@link Phone.TTY_MODE_OFF} 60 * - {@link Phone.TTY_MODE_FULL} 61 * - {@link Phone.TTY_MODE_HCO} 62 * - {@link Phone.TTY_MODE_VCO}
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
NotifyingAsyncQueryHandler.java | 26 * Slightly more abstract {@link AsyncQueryHandler} that helps keep a 27 * {@link WeakReference} back to a listener. Will properly close any 28 * {@link Cursor} if the listener ceases to exist. 31 * {@link Context} objects. 51 * Assign the given {@link AsyncQueryListener} to receive query events from
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/actions/ |
ToolItemAction.java | 26 * Wrapper around {@link ToolItem} to implement {@link ICommonAction} 56 * Sets the {@link Runnable} that will be executed when the action is triggered (through 57 * {@link SelectionListener#widgetSelected(SelectionEvent)} on the wrapped {@link ToolItem}).
|
/sdk/layoutlib_api/src/com/android/layoutlib/api/ |
ILayoutResult.java | 23 * {@link ILayoutLibBridge#computeLayout(IXmlPullParser, int, int, String, java.util.Map, java.util.Map, java.util.Map, IFontLoader, ILayoutLibLog, ICustomViewLoader)} 33 * @See {@link #getErrorMessage()} 45 * Returns the {@link ILayoutViewInfo} object for the top level view. 56 * <p/>Only valid when {@link #getSuccess()} returns {@link #ERROR}
|
/frameworks/base/docs/html/guide/topics/resources/ |
runtime-changes.jd | 3 parent.link=index.html 28 Activity ({@link android.app.Activity#onDestroy()} is called, followed by {@link 36 {@link android.app.Activity#onSaveInstanceState(Bundle) onSaveInstanceState()} before it destroys 38 during {@link android.app.Activity#onCreate(Bundle) onCreate()} or {@link 56 {@link java.lang.Object} to the new instance of your Activity.</p> 73 maintain your Activity state with the {@link android.os.Bundle} that the system saves for you during 82 <li>Override the {@link android.app.Activity#onRetainNonConfigurationInstance()} method to return 84 <li>When your Activity is created again, call {@link [all...] |
/external/guava/src/com/google/common/util/concurrent/ |
AbstractFuture.java | 27 * <p>An abstract implementation of the {@link Future} interface. This class 28 * is an abstraction of {@link java.util.concurrent.FutureTask} to support use 29 * for tasks other than {@link Runnable}s. It uses an 30 * {@link AbstractQueuedSynchronizer} to deal with concurrency issues and 36 * methods {@link #set(Object)}, {@link #setException(Throwable)}, or 37 * {@link #cancel()}. If subclasses want to implement cancellation they can 38 * override the {@link #cancel(boolean)} method with a real implementation, the 97 * {@link AbstractFuture.Sync#COMPLETED} and call {@link #done()} if th [all...] |
/frameworks/base/core/java/android/appwidget/ |
AppWidgetManager.java | 43 * Send this from your {@link AppWidgetHost} activity when you want to pick an AppWidget to display. 49 * <td>{@link #EXTRA_APPWIDGET_ID}</td> 60 * <td>{@link #EXTRA_APPWIDGET_ID}</td> 66 * {@link android.app.Activity#RESULT_OK}, an AppWidget has been selected. You should then 68 * activity. If {@link android.app.Activity#RESULT_CANCELED} is returned, you should delete 78 * to the activity specified in the {@link AppWidgetProviderInfo AppWidgetProviderInfo meta-data}. 84 * <td>{@link #EXTRA_APPWIDGET_ID}</td> 89 * <p>If you return {@link android.app.Activity#RESULT_OK} using 90 * {@link android.app.Activity#setResult Activity.setResult()}, the AppWidget will be added, 91 * and you will receive an {@link #ACTION_APPWIDGET_UPDATE} broadcast for this AppWidget [all...] |
/frameworks/base/core/java/android/view/inputmethod/ |
EditorInfo.java | 34 * {@link InputType}. 44 * Set of bits in {@link #imeOptions} that provide alternative actions 52 * Bits of {@link #IME_MASK_ACTION}: no specific action has been 59 * Bits of {@link #IME_MASK_ACTION}: there is no available action. 64 * Bits of {@link #IME_MASK_ACTION}: the action key performs a "go" 71 * Bits of {@link #IME_MASK_ACTION}: the action key performs a "search" 78 * Bits of {@link #IME_MASK_ACTION}: the action key performs a "send" 85 * Bits of {@link #IME_MASK_ACTION}: the action key performs a "next" 91 * Bits of {@link #IME_MASK_ACTION}: the action key performs a "done" 97 * Flag of {@link #imeOptions}: used to specify that the IME does not nee [all...] |
InputMethod.java | 30 * {@link InputMethodManager} for more general information about the 35 * {@link android.widget.TextView} and {@link android.widget.EditText}. 38 * {@link InputMethodService} or one of its subclasses. When implementing 40 * a {@link #SERVICE_META_DATA} meta-data field, referencing an XML resource 43 * {@link android.Manifest.permission#BIND_INPUT_METHOD} in order to interact 51 * {@link #createSession(android.view.inputmethod.InputMethod.SessionCallback)} 52 * can be called to instantate a secondary {@link InputMethodSession} interface 61 * {@link android.Manifest.permission#BIND_INPUT_METHOD} permission so 71 * <code><{@link android.R.styleable#InputMethod input-method}></code [all...] |
/frameworks/base/core/java/android/app/ |
Activity.java | 79 * {@link #setContentView}. While activities are often presented to the user 81 * windows (via a theme with {@link android.R.attr#windowIsFloating} set) 82 * or embedded inside of another activity (using {@link ActivityGroup}). 87 * <li> {@link #onCreate} is where you initialize your activity. Most 88 * importantly, here you will usually call {@link #setContentView(int)} 89 * with a layout resource defining your UI, and using {@link #findViewById} 93 * <li> {@link #onPause} is where you deal with the user leaving your 96 * {@link android.content.ContentProvider} holding the data). 99 * <p>To be of use with {@link android.content.Context#startActivity Context.startActivity()}, all 101 * {@link android.R.styleable#AndroidManifestActivity <activity> [all...] |
/external/apache-http/src/org/apache/http/cookie/ |
CookieSpecRegistry.java | 62 * Registers a {@link CookieSpecFactory} with the given identifier. 64 * This nameis the same one used to retrieve the {@link CookieSpecFactory} 65 * from {@link #getCookieSpec(String)}. 68 * @param factory the {@link CookieSpecFactory} class to register 83 * Unregisters the {@link CookieSpecFactory} with the given ID. 85 * @param id the identifier of the {@link CookieSpec cookie specification} to unregister 95 * Gets the {@link CookieSpec cookie specification} with the given ID. 97 * @param name the {@link CookieSpec cookie specification} identifier 98 * @param params the {@link HttpParams HTTP parameters} for the cookie 101 * @return {@link CookieSpec cookie specification [all...] |
/frameworks/base/core/java/android/content/pm/ |
ApplicationInfo.java | 38 * {@link ActivityInfo#taskAffinity} for more information. This comes 94 * Value for {@link #flags}: if set, this application is installed in the 100 * Value for {@link #flags}: set to true if this application would like to 103 * from {@link android.R.styleable#AndroidManifestApplication_debuggable 109 * Value for {@link #flags}: set to true if this application has code 111 * from {@link android.R.styleable#AndroidManifestApplication_hasCode 117 * Value for {@link #flags}: set to true if this application is persistent. 118 * Comes from {@link android.R.styleable#AndroidManifestApplication_persistent 124 * Value for {@link #flags}: set to true if this application holds the 125 * {@link android.Manifest.permission#FACTORY_TEST} permission and th [all...] |
/frameworks/base/core/java/android/provider/ |
SocialContract.java | 40 * The package name to use when creating {@link Resources} objects for 64 * Reference to another {@link Activities#RAW_ID} that this social activity 73 * Reference to the {@link android.provider.ContactsContract.Contacts#_ID} that authored 82 * Optional reference to the {@link android.provider.ContactsContract.Contacts#_ID} this 94 * {@link System#currentTimeMillis()} time base. This field is analogous 132 * <code>atom:link rel="alternate"</code> element defined in RFC 4287. 136 public static final String LINK = "link"; 140 * bytes of an image that could be inflated using {@link BitmapFactory}. 161 * authored by a specific {@link android.provider.ContactsContract.Contacts#_ID} [all...] |
/frameworks/base/docs/html/guide/basics/ |
fixme-gs-core-packages.jd | 49 <dt>{@link android.util}</dt> 52 <dt>{@link android.os}</dt> 55 <dt>{@link android.graphics}</dt><dd>is the core rendering package.</dd> 56 <dt>{@link android.text}, {@link android.text.method}, {@link 57 android.text.style}, and {@link android.text.util} </dt> 60 <dt>{@link android.database}</dt> 63 <dt>{@link android.content}</dt> 67 <dt>{@link android.view}</dt [all...] |
/frameworks/base/docs/html/guide/topics/graphics/ |
index.jd | 21 {@link android.graphics.drawable drawable package}. OpenGL APIs are available 22 from the Khronos {@link javax.microedition.khronos.opengles OpenGL ES package}, 23 plus some Android {@link android.opengl OpenGL utilities}.</p> 50 <code>{@link android.graphics.Canvas#drawPicture(Picture,Rect) drawPicture()}</code>). In doing so, you are also in 64 your layout, call <code>{@link android.view.View#invalidate()}</code> and then handle the 65 <code>{@link android.view.View#onDraw(Canvas) onDraw()}</code> callback..</li> 66 <li>Or, in a separate thread, wherein you manage a {@link android.view.SurfaceView} and 76 to the content of an {@link android.widget.ImageView} in your layout. 86 you should do so by drawing through a {@link android.graphics.Canvas}. A Canvas works for you as 89 underlying {@link android.graphics.Bitmap}, which is placed into the window.</p [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
AndroidDebugBridge.java | 37 * <p/><b>{@link #init(boolean)} must be called before anything is done.</b> 96 * with {@link AndroidDebugBridge} changes. 100 * Sent when a new {@link AndroidDebugBridge} is connected. 103 * @param bridge the new {@link AndroidDebugBridge} object. 110 * with {@link IDevice} addition, deletion, and changes. 114 * Sent when the a device is connected to the {@link AndroidDebugBridge}. 122 * Sent when the a device is connected to the {@link AndroidDebugBridge}. 135 * values: {@link IDevice#CHANGE_BUILD_INFO}, {@link IDevice#CHANGE_STATE}, 136 * {@link IDevice#CHANGE_CLIENT_LIST [all...] |
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
memory_slices.sgml | 104 be changed with the <link linkend="G_SLICE">G_SLICE=always-malloc</link> 118 be changed with the <link linkend="G_SLICE">G_SLICE=always-malloc</link> 145 <link linkend="G_DEBUG">G_DEBUG=gc-friendly</link> environment variable, 146 also see <link linkend="G_SLICE">G_SLICE</link> for related debugging options. 162 <link linkend="G_DEBUG">G_DEBUG=gc-friendly</link> environment variable [all...] |
/frameworks/base/test-runner/src/android/test/ |
ServiceTestCase.java | 39 * calls. <insert link to Service lifecycle doc here>. 44 * {@link #startService} or {@link #bindService}. This gives you a chance 47 * <li>When your test calls {@link #startService} or {@link #bindService} 50 * <li>After your test completes, the test case {@link #tearDown} function is 56 * Every service has two inherent dependencies, the {@link android.content.Context Context} in 57 * which it runs, and the {@link android.app.Application Application} with which it is associated. 62 * Context, and a generic {@link android.test.mock.MockApplication MockApplication} object. 64 * {@link AndroidTestCase#setContext(Context) setContext()} or [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
ProviderPermissionTest.java | 34 * {@link android.Manifest.permission#READ_CONTACTS} 44 * {@link android.Manifest.permission#WRITE_CONTACTS} 54 * {@link android.Manifest.permission#READ_CONTACTS} 64 * {@link android.Manifest.permission#WRITE_CONTACTS} 74 * {@link android.Manifest.permission#WRITE_SETTINGS} 84 * {@link android.Manifest.permission#READ_HISTORY_BOOKMARKS} 94 {@link android.Manifest.permission#WRITE_HISTORY_BOOKMARKS} 104 * {@link android.Manifest.permission#READ_HISTORY_BOOKMARKS} 114 {@link android.Manifest.permission#WRITE_HISTORY_BOOKMARKS}
|