HomeSort by relevance Sort by last modified time
    Searched full:link (Results 351 - 375 of 18913) sorted by null

<<11121314151617181920>>

  /frameworks/base/docs/html/training/gestures/
detector.jd 3 parent.link=index.html
7 next.link=movement.html
59 <p>The examples in this lesson use the {@link android.support.v4.view.GestureDetectorCompat}
60 and {@link android.support.v4.view.MotionEventCompat} classes. These classes are in the
63 running Android 1.6 and higher. Note that {@link android.support.v4.view.MotionEventCompat} is <em>not</em> a
64 replacement for the {@link android.view.MotionEvent} class. Rather, it provides static utility
65 methods to which you pass your {@link android.view.MotionEvent} object in order to receive
71 callback {@link android.view.View#onTouchEvent onTouchEvent()}
75 {@link android.view.View#onTouchEvent onTouchEvent()} is fired several times.</p>
80 the {@link android.view.MotionEvent} delivered to {@link android.view.View#onTouchEvent onTouchEvent()}
    [all...]
multi.jd 3 parent.link=index.html
7 next.link=scale.html
54 <li>{@link android.view.MotionEvent#ACTION_DOWN}&mdash;For the first pointer that
56 always at index 0 in the {@link android.view.MotionEvent}.</li>
57 <li>{@link android.support.v4.view.MotionEventCompat#ACTION_POINTER_DOWN}&mdash;For
59 pointer is at the index returned by {@link android.support.v4.view.MotionEventCompat#getActionIndex getActionIndex()}.</li>
60 <li>{@link android.view.MotionEvent#ACTION_MOVE}&mdash;A change has happened during a press gesture.</li>
61 <li>{@link android.support.v4.view.MotionEventCompat#ACTION_POINTER_UP}&mdash;Sent when a non-primary pointer goes up.</li>
62 <li>{@link android.view.MotionEvent#ACTION_UP}&mdash;Sent when the last pointer leaves the screen.</li>
65 <p>You keep track of individual pointers within a {@link
    [all...]
  /external/guava/guava/src/com/google/common/cache/
LoadingCache.java 36 * <p>All methods other than {@link #get} and {@link #getUnchecked} are optional.
38 * <p>When evaluated as a {@link Function}, a cache yields the same result as invoking
39 * {@link #getUnchecked}.
52 * <p>If another call to {@link #get} or {@link #getUnchecked} is currently loading the value for
56 * <p>Caches loaded by a {@link CacheLoader} will call {@link CacheLoader#load} to load new values
63 * exceptions, then prefer {@link #getUnchecked} over this method.
75 * completes. Unlike {@link #get}, this method does not throw a checked exception, and thus shoul
    [all...]
  /external/mockito/src/org/mockito/
BDDMockito.java 19 * Hence {@link BDDMockito} class introduces an alias so that you stub method calls with {@link BDDMockito#given(Object)} method.
61 * See original {@link OngoingStubbing}
67 * See original {@link OngoingStubbing#thenAnswer(Answer)}
73 * See original {@link OngoingStubbing#then(Answer)}
79 * See original {@link OngoingStubbing#thenReturn(Object)}
85 * See original {@link OngoingStubbing#thenReturn(Object, Object[])}
91 * See original {@link OngoingStubbing#thenThrow(Throwable...)}
97 * See original {@link OngoingStubbing#thenThrow(Class[])}
103 * See original {@link OngoingStubbing#thenCallRealMethod()}
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceScreen.java 37 * Represents a top-level {@link Preference} that
38 * is the root of a Preference hierarchy. A {@link PreferenceActivity}
40 * this class, use {@link PreferenceManager#createPreferenceScreen(Context)}.
43 * <li> When a {@link PreferenceActivity} points to this, it is used as the root
47 * another screen of preferences as a {@link Dialog} or via a
48 * {@link Context#startActivity(android.content.Intent)} from the
49 * {@link Preference#getIntent()}). The children of this {@link PreferenceScreen}
50 * are NOT shown in the screen that this {@link PreferenceScreen} is shown in.
72 * hierarchy and given to a {@link PreferenceActivity}. The first screen wil
    [all...]
  /frameworks/base/core/java/android/speech/
RecognizerIntent.java 32 * Constants for supporting speech recognition through starting an {@link Intent}
51 * {@link Activity#onActivityResult}, if you start the intent using
52 * {@link Activity#startActivityForResult(Intent, int)}), or forwarded via a PendingIntent
55 * <p>Starting this intent with just {@link Activity#startActivity(Intent)} is not supported.
56 * You must either use {@link Activity#startActivityForResult(Intent, int)}, or provide a
61 * <li>{@link #EXTRA_LANGUAGE_MODEL}
66 * <li>{@link #EXTRA_PROMPT}
67 * <li>{@link #EXTRA_LANGUAGE}
68 * <li>{@link #EXTRA_MAX_RESULTS}
69 * <li>{@link #EXTRA_RESULTS_PENDINGINTENT
    [all...]
  /frameworks/base/docs/html/guide/topics/connectivity/
wifip2p.jd 46 in the {@link android.net.wifi.p2p.WifiP2pManager} class.</li>
48 <li>Listeners that allow you to be notified of the success or failure of {@link
49 android.net.wifi.p2p.WifiP2pManager} method calls. When calling {@link
58 provide a {@link android.net.wifi.p2p.WifiP2pManager.ActionListener} to a call to {@link
60 notified with the {@link android.net.wifi.p2p.WifiP2pManager.ActionListener#onSuccess
61 ActionListener.onSuccess()} and {@link android.net.wifi.p2p.WifiP2pManager.ActionListener#onFailure
63 methods. A {@link android.net.wifi.p2p.WifiP2pManager#WIFI_P2P_PEERS_CHANGED_ACTION} intent is
64 also broadcast if the {@link android.net.wifi.p2p.WifiP2pManager#discoverPeers discoverPeers()}
69 <p>The {@link android.net.wifi.p2p.WifiP2pManager} class provides methods to allow you to interact wit
    [all...]
  /frameworks/base/core/java/android/content/
Context.java 71 * such as {@link ContentProvider}, {@link BroadcastReceiver}, and
72 * {@link android.app.Service}. There are no guarantees that this
86 * such as {@link ContentProvider}, {@link BroadcastReceiver}, and
87 * {@link android.app.Service}. There are no guarantees that this
98 * File creation mode: for use with {@link #openFileOutput}, if the file
135 * Flag for {@link #bindService}: automatically create the service as long
137 * its {@link android.app.Service#onStartCommand}
139 * explicit call to {@link #startService}. Even without that, though
    [all...]
  /dalvik/dx/src/com/android/dx/rop/
package-info.java 32 * <li> {@link RopMethod}, the representation of an individual method
33 * <li> {@link BasicBlock} and its per-method container, {@link BasicBlockList},
35 * <li> {@link Insn} and its subclasses along with its per-basic block
36 * container {@link InsnList}. {@code Insn} instances represent
38 * <li> {@link RegisterSpec} and its container {@link RegisterSpecList}. A
42 * <li> {@link Rop} instances represent opcodes in the abstract machine. Many
44 * {@link Rops}. The rest are constructed dynamically using static methods
46 * <li> {@link RegOps} lists numeric constants for the opcode
    [all...]
  /frameworks/base/core/java/android/provider/
LiveFolders.java 23 * {@link android.content.ContentProvider}. To create a live folder, two components
26 * <li>An activity that can respond to the intent action {@link #ACTION_CREATE_LIVE_FOLDER}. The
28 * <li>A {@link android.content.ContentProvider} to provide the live folder items.</li>
33 * intent filter action {@link #ACTION_CREATE_LIVE_FOLDER} and presents the list to the user.
35 * {@link #ACTION_CREATE_LIVE_FOLDER} action. The activity then creates the live folder and
37 * {@link android.app.Activity#setResult(int, android.content.Intent) activity result}. The
79 * <p>The live folder is described by an {@link android.content.Intent} as follows:</p>
91 * <tr><th>{@link #EXTRA_LIVE_FOLDER_NAME}</th>
96 * <tr><th>{@link #EXTRA_LIVE_FOLDER_ICON}</th>
97 * <td>Extra {@link android.content.Intent.ShortcutIconResource}</td
    [all...]
  /frameworks/base/docs/html/training/basics/activity-lifecycle/
starting.jd 3 parent.link=index.html
7 next.link=pausing.html
40 Android system initiates code in an {@link android.app.Activity} instance by invoking specific
99 <td>{@link android.app.Activity#onCreate onCreate()}</td>
100 <td>{@link android.app.Activity#onDestroy()}</td>
104 <td>{@link android.app.Activity#onStart()}</td>
105 <td>{@link android.app.Activity#onStop()}</td>
109 <td>{@link android.app.Activity#onResume()}</td>
110 <td>{@link android.app.Activity#onPause()}</td>
135 {@link android.app.Activity#onCreate onCreate()}, it quickly calls {@lin
    [all...]
  /frameworks/base/docs/html/guide/webapps/
webview.jd 8 <li>Use {@link android.webkit.WebView} to display web pages in your Android application
31 <li>{@link android.webkit.WebView}</li>
32 <li>{@link android.webkit.WebSettings}</li>
33 <li>{@link android.webkit.WebViewClient}</li>
40 you can do it using {@link android.webkit.WebView}. The {@link android.webkit.WebView} class is an
41 extension of Android's {@link android.view.View} class that allows you to display web pages as a
43 browser, such as navigation controls or an address bar. All that {@link android.webkit.WebView}
46 <p>A common scenario in which using {@link android.webkit.WebView} is helpful is when you want to
48 or a user guide. Within your Android application, you can create an {@link android.app.Activity
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/
settings.jd 52 <li>{@link android.preference.Preference}</li>
53 <li>{@link android.preference.PreferenceActivity}</li>
54 <li>{@link android.preference.PreferenceFragment}</li>
74 Android's {@link android.preference.Preference} APIs to build an interface that's consistent with
76 how to build your app settings using {@link android.preference.Preference} APIs.</p>
87 settings. Selecting an item defined by a {@link android.preference.Preference}
95 <p>Instead of using {@link android.view.View} objects to build the user interface, settings are
96 built using various subclasses of the {@link android.preference.Preference} class that you
99 <p>A {@link android.preference.Preference} object is the building block for a single
100 setting. Each {@link android.preference.Preference} appears as an item in a list and provides th
    [all...]
  /frameworks/base/media/java/android/media/
ToneGenerator.java 726 /** Maximum volume, for use with {@link #ToneGenerator(int,int)} */
728 /** Minimum volume setting, for use with {@link #ToneGenerator(int,int)} */
749 * <li>{@link #TONE_DTMF_0}
750 * <li>{@link #TONE_DTMF_1}
751 * <li>{@link #TONE_DTMF_2}
752 * <li>{@link #TONE_DTMF_3}
753 * <li>{@link #TONE_DTMF_4}
754 * <li>{@link #TONE_DTMF_5}
755 * <li>{@link #TONE_DTMF_6}
756 * <li>{@link #TONE_DTMF_7
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothHeadset.java 39 * <p> Use {@link BluetoothAdapter#getProfileProxy} to get
41 * {@link BluetoothAdapter#closeProfileProxy} to close the service connection.
57 * <li> {@link #EXTRA_STATE} - The current state of the profile. </li>
58 * <li> {@link #EXTRA_PREVIOUS_STATE}- The previous state of the profile. </li>
59 * <li> {@link BluetoothDevice#EXTRA_DEVICE} - The remote device. </li>
61 * <p>{@link #EXTRA_STATE} or {@link #EXTRA_PREVIOUS_STATE} can be any of
62 * {@link #STATE_DISCONNECTED}, {@link #STATE_CONNECTING},
63 * {@link #STATE_CONNECTED}, {@link #STATE_DISCONNECTING}
    [all...]
BluetoothGattCallback.java 20 * This abstract class is used to implement {@link BluetoothGatt} callbacks.
30 * {@link BluetoothGatt#GATT_SUCCESS} if the operation succeeds.
32 * {@link BluetoothProfile#STATE_DISCONNECTED} or
33 * {@link BluetoothProfile#STATE_CONNECTED}
43 * @param gatt GATT client invoked {@link BluetoothGatt#discoverServices}
44 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the remote device
53 * @param gatt GATT client invoked {@link BluetoothGatt#readCharacteristic}
56 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the read operation
72 * @param gatt GATT client invoked {@link BluetoothGatt#writeCharacteristic}
76 * {@link BluetoothGatt#GATT_SUCCESS} if the operation succeeds
    [all...]
  /frameworks/base/core/java/com/android/internal/backup/
IBackupTransport.aidl 69 * will be called outside of the {@link #startSession}/{@link #endSession} pair.
82 * this is called, {@link #finishBackup} must be called to ensure the request
85 * @return One of {@link BackupConstants#TRANSPORT_OK} (OK so far) or
86 * {@link BackupConstants#TRANSPORT_ERROR} (on network error or other failure).
92 * the data immediately, or may buffer it. After this is called, {@link #finishBackup}
104 * @return one of {@link BackupConstants#TRANSPORT_OK} (OK so far),
105 * {@link BackupConstants#TRANSPORT_ERROR} (on network error or other failure), or
106 * {@link BackupConstants#TRANSPORT_NOT_INITIALIZED} (if the backend dataset has
114 * the app had never yet been backed up. After this is called, {@link finishBackup
    [all...]
  /frameworks/base/docs/html/training/basics/intents/
result.jd 3 parent.link=index.html
7 previous.link=sending.html
9 next.link=filters.html
31 receive a result back. To receive a result, call {@link android.app.Activity#startActivityForResult
32 startActivityForResult()} (instead of {@link android.app.Activity#startActivity
40 sends the result as another {@link android.content.Intent} object. Your activity receives it in
41 the {@link android.app.Activity#onActivityResult onActivityResult()} callback.</p>
44 {@link android.app.Activity#startActivityForResult startActivityForResult()}. When starting one of
51 <p>There's nothing special about the {@link android.content.Intent} object you use when starting
52 an activity for a result, but you do need to pass an additional integer argument to the {@link
    [all...]
  /frameworks/base/docs/html/training/custom-views/
making-interactive.jd 3 parent.link=index.html
7 previous.link=custom-drawing.html
9 next.link=optimizing-view.html
62 most common input event in the Android system is <em>touch</em>, which triggers {@link
77 provides {@link android.view.GestureDetector}.</p>
79 <p>Construct a {@link android.view.GestureDetector} by passing in an instance of a class that
80 implements {@link
82 can extend {@link
83 android.view.GestureDetector.SimpleOnGestureListener} instead of implementing the {@link
85 interface. For instance, this code creates a class that extends {@link
    [all...]
  /frameworks/base/nfc-extras/java/com/android/nfc_extras/
NfcAdapterExtras.java 28 * Provides additional methods on an {@link NfcAdapter} for Card Emulation
29 * and management of {@link NfcExecutionEnvironment}'s.
31 * There is a 1-1 relationship between an {@link NfcAdapterExtras} object and
32 * a {@link NfcAdapter} object.
42 * Requires the {@link android.Manifest.permission#WRITE_SECURE_SETTINGS} permission
53 * Requires the {@link android.Manifest.permission#WRITE_SECURE_SETTINGS} permission
85 * Get the {@link NfcAdapterExtras} for the given {@link NfcAdapter}.
88 * Requires the {@link android.Manifest.permission#WRITE_SECURE_SETTINGS} permission.
90 * @param adapter a {@link NfcAdapter}, must not be nul
    [all...]
  /frameworks/base/core/java/android/os/
RemoteCallbackList.java 24 * {@link android.app.Service} to its clients. In particular, this:
27 * <li> Keeps track of a set of registered {@link IInterface} callbacks,
28 * taking care to identify them through their underlying unique {@link IBinder}
29 * (by calling {@link IInterface#asBinder IInterface.asBinder()}.
30 * <li> Attaches a {@link IBinder.DeathRecipient IBinder.DeathRecipient} to
39 * service, and call its {@link #register} and {@link #unregister} methods
41 * the registered clients, use {@link #beginBroadcast},
42 * {@link #getBroadcastItem}, and {@link #finishBroadcast}
    [all...]
  /frameworks/base/docs/html/training/graphics/opengl/
environment.jd 3 parent.link=index.html
7 previous.link=index.html
9 next.link=shapes.html
43 {@link android.opengl.GLSurfaceView} and a {@link android.opengl.GLSurfaceView.Renderer}. A {@link
44 android.opengl.GLSurfaceView} is a view container for graphics drawn with OpenGL and {@link
49 <p>{@link android.opengl.GLSurfaceView} is just one way to incorporate OpenGL ES graphics into your
52 take a look at {@link android.view.TextureView}. For real, do-it-yourself developers, it is also
53 possible to build up an OpenGL ES view using {@link android.view.SurfaceView}, but this require
    [all...]
  /external/guava/guava/src/com/google/common/collect/
SortedSetMultimap.java 31 * that is, they comprise a {@link SortedSet}. It cannot hold duplicate
36 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
37 * each return a {@link SortedSet} of values, while {@link Multimap#entries()}
38 * returns a {@link Set} of map entries. Though the method signature doesn't say
39 * so explicitly, the map returned by {@link #asMap} has {@code SortedSet}
58 * key, this method returns a {@link SortedSet}, instead of the
59 * {@link java.util.Collection} specified in the {@link Multimap} interface
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
Item.java 24 * <h1>An Item received from a node (via {@link LeafNode#getItems()} or {@link LeafNode#addItemEventListener(org.jivesoftware.smackx.pubsub.listener.ItemEventListener)}</b>
26 * {@link ConfigureForm#isPersistItems()} and {@link ConfigureForm#isDeliverPayloads()}set to false.
27 * <li>Will have a payload if the node configuration has {@link ConfigureForm#isDeliverPayloads()} set
30 * <h1>An Item created to send to a node (via {@link LeafNode#send()} or {@link LeafNode#publish()}</b>
34 * <li>Will require payload if the node configuration has {@link ConfigureForm#isDeliverPayloads()} set
37 * <p>To customise the payload object being returned from the {@link #getPayload()} method, you can
38 * add a custom parser as explained in {@link ItemProvider}.
    [all...]
  /frameworks/base/core/java/android/content/pm/
ApplicationInfo.java 38 * {@link ActivityInfo#taskAffinity} for more information. This comes
95 * Set from the {@link android.R.attr#uiOptions} attribute in the
101 * Value for {@link #flags}: if set, this application is installed in the
107 * Value for {@link #flags}: set to true if this application would like to
110 * from {@link android.R.styleable#AndroidManifestApplication_debuggable
116 * Value for {@link #flags}: set to true if this application has code
118 * from {@link android.R.styleable#AndroidManifestApplication_hasCode
124 * Value for {@link #flags}: set to true if this application is persistent.
125 * Comes from {@link android.R.styleable#AndroidManifestApplication_persistent
131 * Value for {@link #flags}: set to true if this application holds th
    [all...]

Completed in 1249 milliseconds

<<11121314151617181920>>