/frameworks/base/core/java/android/appwidget/ |
AppWidgetProvider.java | 26 * Everything you can do with AppWidgetProvider, you can do with a regular {@link BroadcastReceiver}. 28 * {@link #onReceive(Context,Intent) onReceive(Context,Intent)}, and calls hook methods 31 * <p>Extend this class and override one or more of the {@link #onUpdate}, {@link #onDeleted}, 32 * {@link #onEnabled} or {@link #onDisabled} methods to implement your own AppWidget functionality. 50 * Implements {@link BroadcastReceiver#onReceive} to dispatch calls to the various 97 * Called in response to the {@link AppWidgetManager#ACTION_APPWIDGET_UPDATE} broadcast when 98 * this AppWidget provider is being asked to provide {@link android.widget.RemoteViews RemoteViews} 103 * @param context The {@link android.content.Context Context} in which this receiver i [all...] |
/frameworks/base/core/java/android/view/ |
CollapsibleActionView.java | 22 * When a {@link View} implements this interface it will receive callbacks 24 * app-specified callbacks to {@link OnActionExpandListener}. 26 * <p>See {@link MenuItem} for more information about action views. 27 * See {@link android.app.ActionBar} for more information about the action bar. 32 * See {@link MenuItem#expandActionView()}. 38 * See {@link MenuItem#collapseActionView()}.
|
/frameworks/base/docs/html/training/basics/data-storage/ |
shared-preferences.jd | 28 you should use the {@link android.content.SharedPreferences} APIs. 29 A {@link android.content.SharedPreferences} object points to a file containing 31 {@link android.content.SharedPreferences} file is 34 <p>This class shows you how to use the {@link android.content.SharedPreferences} APIs to store and 37 <p class="note"><strong>Note:</strong> The {@link android.content.SharedPreferences} APIs are 39 {@link android.preference.Preference} APIs, which help you build a user interface 40 for your app settings (although they use {@link android.content.SharedPreferences} as their 41 implementation to save the app settings). For information about using the {@link 50 <li>{@link android.content.Context#getSharedPreferences(String,int) 53 {@link android.content.Context} in your app.</li [all...] |
/frameworks/base/docs/html/guide/topics/ui/controls/ |
spinner.jd | 15 <li>{@link android.widget.Spinner}</li> 16 <li>{@link android.widget.SpinnerAdapter}</li> 17 <li>{@link android.widget.AdapterView.OnItemSelectedListener}</li> 29 <p>You can add a spinner to your layout with the {@link android.widget.Spinner} object. You 39 <p>To populate the spinner with a list of choices, you then need to specify a {@link 40 android.widget.SpinnerAdapter} in your {@link android.app.Activity} or {@link android.app.Fragment} 46 an {@link android.widget.SpinnerAdapter}, such as an {@link android.widget.ArrayAdapter} if the 47 choices are available in an array or a {@link android.widget.CursorAdapter} if the choices ar [all...] |
/frameworks/base/media/java/android/media/ |
RingtoneManager.java | 42 * results into a single cursor. It also provides a {@link Ringtone} for each 44 * {@link #TYPE_RINGTONE} refers to the type of sounds that are suitable for the 48 * {@link #ACTION_RINGTONE_PICKER} intent to launch the picker as a subactivity. 84 * Input: {@link #EXTRA_RINGTONE_EXISTING_URI}, 85 * {@link #EXTRA_RINGTONE_SHOW_DEFAULT}, 86 * {@link #EXTRA_RINGTONE_SHOW_SILENT}, {@link #EXTRA_RINGTONE_TYPE}, 87 * {@link #EXTRA_RINGTONE_DEFAULT_URI}, {@link #EXTRA_RINGTONE_TITLE}, 88 * {@link #EXTRA_RINGTONE_INCLUDE_DRM} [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ListMultimap.java | 31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods 32 * each return a {@link List} of values. Though the method signature doesn't say 33 * so explicitly, the map returned by {@link #asMap} has {@code List} values. 44 * insertion ordering, this method returns a {@link List}, instead of the 45 * {@link java.util.Collection} specified in the {@link Multimap} interface. 54 * insertion ordering, this method returns a {@link List}, instead of the 55 * {@link java.util.Collection} specified in the {@link Multimap} interface [all...] |
AbstractIndexedListIterator.java | 27 * This class provides a skeletal implementation of the {@link ListIterator} 29 * position. It does not support {@link #remove}, {@link #set}, or {@link #add}. 41 * {@link #next()}. 47 * position is 0. That is, the first call to {@link #next()} will return the 48 * first element (or throw {@link NoSuchElementException} if {@code size} is 59 * initial position. That is, the first call to {@link #nextIndex()} will 60 * return {@code position}, and the first call to {@link #next()} will return 61 * the element at that index, if available. Calls to {@link #previous()} ca [all...] |
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
ItemsExtension.java | 70 * <li>Request items from node - itemsType = {@link ItemsElementType#items}, items = list of {@link Item} and an
72 * <li>Request to delete items - itemsType = {@link ItemsElementType#retract}, items = list of {@link Item} containing
74 * <li>Items published event - itemsType = {@link ItemsElementType#items}, items = list of {@link Item} and
76 * <li>Items deleted event - itemsType = {@link ItemsElementType#items}, items = list of {@link RetractItem} and
81 * @param items The list of {@link Item} or {@link RetractItem} [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
EmailAsyncTask.java | 27 * {@link AsyncTask} substitution for the email app. 29 * Modeled after {@link AsyncTask}; the basic usage is the same, with extra features: 32 * - Instead of {@link AsyncTask#onPostExecute}, it has {@link #onSuccess(Object)}, as the 33 * regular {@link AsyncTask#onPostExecute} is a bit hard to predict when it'll be called and 36 * Note this class is missing some of the {@link AsyncTask} features, e.g. it lacks 37 * {@link AsyncTask#onProgressUpdate}. Add these when necessary. 44 * Tracks {@link EmailAsyncTask}. 46 * Call {@link #cancellAllInterrupt()} to cancel all tasks registered. 170 * Similar to {@link AsyncTask#onPostExecute}, but this will never be executed i [all...] |
/frameworks/base/core/java/android/app/ |
UiModeManager.java | 32 * {@link android.content.Intent#ACTION_DOCK_EVENT} broadcasts that are sent when the user 34 * the UiModeManager switches the system {@link android.content.res.Configuration} 37 * broadcasts {@link #ACTION_ENTER_CAR_MODE} and 38 * {@link #ACTION_ENTER_DESK_MODE} for more information. 48 * {@link android.content.Context#getSystemService 58 * {@link android.content.Intent#ACTION_MAIN} with category 59 * {@link android.content.Intent#CATEGORY_CAR_DOCK} 64 * of the broadcast to {@link Activity#RESULT_CANCELED}. 79 * {@link android.content.Intent#ACTION_MAIN} with category 80 * {@link android.content.Intent#CATEGORY_DESK_DOCK [all...] |
/frameworks/base/core/java/android/content/pm/ |
PackageManager.java | 42 * You can find this class through {@link Context#getPackageManager}. 60 * {@link PackageInfo} flag: return information about 61 * activities in the package in {@link PackageInfo#activities}. 66 * {@link PackageInfo} flag: return information about 68 * {@link PackageInfo#receivers}. 73 * {@link PackageInfo} flag: return information about 74 * services in the package in {@link PackageInfo#services}. 79 * {@link PackageInfo} flag: return information about 81 * {@link PackageInfo#providers}. 86 * {@link PackageInfo} flag: return information abou [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
ConnectivityManagerPermissionTest.java | 42 * Verify that calling {@link ConnectivityManager#getNetworkInfo(int))} 45 * {@link android.Manifest.permission#ACCESS_NETWORK_STATE}. 58 * Verify that calling {@link ConnectivityManager#getNetworkPreference()} 61 * {@link android.Manifest.permission#ACCESS_NETWORK_STATE}. 74 * Verify that calling {@link ConnectivityManager#requestRouteToHost(int, int)} 77 * {@link android.Manifest.permission#CHANGE_NETWORK_STATE}. 90 * Verify that calling {@link ConnectivityManager#setNetworkPreference(int)} 93 * {@link android.Manifest.permission#CHANGE_NETWORK_STATE}. 106 * Verify that calling {@link ConnectivityManager#setNetworkPreference(int)} 109 * {@link android.Manifest.permission#CHANGE_NETWORK_STATE} [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
InternalSelectionScroll.java | 27 * ({@link InternalSelectionView}) can cause its parent {@link android.widget.ScrollView} 30 * {@link InternalSelectionView} achieves this by calling {@link android.view.View#requestRectangleOnScreen} 33 * {@link android.widget.ScrollView}, in turn, implements {@link android.view.View#requestRectangleOnScreen} 34 * thereby acheiving the result. Note that {@link android.widget.ListView} also implements the 35 * method, so views that call {@link android.view.View#requestRectangleOnScreen} that are embedded 36 * within either {@link android.widget.ScrollView}s or {@link android.widget.ListView}s ca [all...] |
/external/guava/guava/src/com/google/common/cache/ |
AbstractLoadingCache.java | 33 * implementation for the {@link #get} and {@link #getIfPresent} methods. {@link #getUnchecked}, 34 * {@link #get(K, Callable)}, and {@link #getAll} are implemented in terms of {@code get}; 35 * {@link #getAllPresent} is implemented in terms of {@code get}; {@link #invalidateAll(Iterable)} 36 * is implemented in terms of {@link #invalidate}. The method {@link #cleanUp} is a no-op. All other 37 * methods throw an {@link UnsupportedOperationException} [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
GenericMapMaker.java | 27 * A class exactly like {@link MapMaker}, except restricted in the types of maps it can build. 45 * See {@link MapMaker#initialCapacity}. 50 * See {@link MapMaker#maximumSize}. 55 * See {@link MapMaker#strongKeys}. 60 * See {@link MapMaker#concurrencyLevel}. 65 * See {@link MapMaker#strongValues}. 70 * See {@link MapMaker#expiration}. 77 * See {@link MapMaker#expireAfterWrite}. 87 * See {@link MapMaker#makeMap}. 92 * See {@link MapMaker#makeComputingMap} [all...] |
/frameworks/base/core/java/android/database/ |
ContentObservable.java | 22 * A specialization of {@link Observable} for {@link ContentObserver} 24 * {@link ContentObserver} objects. 36 * Invokes {@link ContentObserver#dispatchChange(boolean)} on each observer. 40 * notifications by implementing {@link ContentObserver#deliverSelfNotifications} 46 * @deprecated Use {@link #dispatchChange(boolean, Uri)} instead. 54 * Invokes {@link ContentObserver#dispatchChange(boolean, Uri)} on each observer. 59 * notifications by implementing {@link ContentObserver#deliverSelfNotifications} 77 * Invokes {@link ContentObserver#onChange} on each observer. 81 * @deprecated Use {@link #dispatchChange} instead [all...] |
/frameworks/base/core/java/android/nfc/tech/ |
MifareUltralight.java | 31 * Provides access to MIFARE Ultralight properties and I/O operations on a {@link Tag}. 33 * <p>Acquire a {@link MifareUltralight} object using {@link #get}. 35 * <p>MIFARE Ultralight compatible tags have 4 byte pages {@link #PAGE_SIZE}. 36 * The primary operations on an Ultralight tag are {@link #readPages} and 37 * {@link #writePage}. 53 * {@link MifareUltralight} will never be enumerated in {@link Tag#getTechList}. 54 * If it is enumerated, then all {@link MifareUltralight} I/O operations will be supported. 55 * In either case, {@link NfcA} will also be enumerated on the tag [all...] |
NfcA.java | 28 * Provides access to NFC-A (ISO 14443-3A) properties and I/O operations on a {@link Tag}. 30 * <p>Acquire a {@link NfcA} object using {@link #get}. 31 * <p>The primary NFC-A I/O operation is {@link #transceive}. Applications must 32 * implement their own protocol stack on top of {@link #transceive}. 35 * require the {@link android.Manifest.permission#NFC} permission. 49 * Get an instance of {@link NfcA} for the given tag. 50 * <p>Returns null if {@link NfcA} was not enumerated in {@link Tag#getTechList}. 105 * <p>Use {@link #getMaxTransceiveLength} to retrieve the maximum number of byte [all...] |
NfcF.java | 28 * Provides access to NFC-F (JIS 6319-4) properties and I/O operations on a {@link Tag}. 30 * <p>Acquire a {@link NfcF} object using {@link #get}. 31 * <p>The primary NFC-F I/O operation is {@link #transceive}. Applications must 32 * implement their own protocol stack on top of {@link #transceive}. 35 * require the {@link android.Manifest.permission#NFC} permission. 49 * Get an instance of {@link NfcF} for the given tag. 50 * <p>Returns null if {@link NfcF} was not enumerated in {@link Tag#getTechList}. 104 * <p>Use {@link #getMaxTransceiveLength} to retrieve the maximum amount of byte [all...] |
/frameworks/base/docs/html/training/sharing/ |
send.jd | 3 parent.link=index.html 7 next.link=receive.html 33 Android defines several actions, including {@link android.content.Intent#ACTION_SEND} which, as 46 {@link android.app.ActionBar} is to use {@link android.widget.ShareActionProvider}, which became 47 available in API level 14. {@link android.widget.ShareActionProvider} is discussed in the lesson 56 <strong>Figure 1.</strong> Screenshot of {@link android.content.Intent#ACTION_SEND} intent chooser 61 <p>The most straightforward and common use of the {@link android.content.Intent#ACTION_SEND} 76 {@link android.content.Intent#ACTION_SEND} and MIME type text/plain, the Android system will run 79 {@link android.content.Intent#createChooser(android.content.Intent, CharSequence [all...] |
/frameworks/base/test-runner/src/android/test/ |
ServiceTestCase.java | 52 * The {@link #setUp()} method is called before each test method. The base implementation 57 * The test case waits to call {@link android.app.Service#onCreate()} until one of your 58 * test methods calls {@link #startService} or {@link #bindService}. This gives you an 63 * When one of your test methods calls {@link #startService ServiceTestCase.startService()} 64 * or {@link #bindService ServiceTestCase.bindService()}, the test case calls 65 * {@link android.app.Service#onCreate() Service.onCreate()} and then calls either 66 * {@link android.app.Service#startService(Intent) Service.startService(Intent)} or 67 * {@link android.app.Service#bindService(Intent, ServiceConnection, int) 72 * After each test method finishes, the test case calls the {@link #tearDown} method. Thi [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
Editor.java | 26 * Generic definition of something that edits a {@link Data} row through an 27 * {@link ValuesDelta} object. 33 * Called when the given {@link Editor} is requested to be deleted by the user. 38 * Called when the given {@link Editor} has a request, for example it 54 * Returns whether or not all the fields are empty in this {@link Editor}. 59 * Prepares this editor for the given {@link ValuesDelta}, which 69 * Add a specific {@link EditorListener} to this {@link Editor}. 80 * Performs the delete operation for this {@link Editor}. 85 * Clears all fields in this {@link Editor} [all...] |
/frameworks/base/docs/html/guide/topics/ui/ |
drag-drop.jd | 69 {@link android.view.View View} 72 {@link android.view.View.OnLongClickListener OnLongClickListener} 75 {@link android.view.View.OnDragListener OnDragListener} 78 {@link android.view.DragEvent DragEvent} 81 {@link android.view.View.DragShadowBuilder DragShadowBuilder} 84 {@link android.content.ClipData ClipData} 87 {@link android.content.ClipDescription ClipDescription} 132 drag event callback methods associated with the {@link android.view.View} objects in the layout. 137 {@link android.view.View.OnDragListener}. You set the drag event listener object for a View 139 {@link android.view.View#setOnDragListener(View.OnDragListener) setOnDragListener()} method [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
package-info.java | 25 * {@link PhiInsn phi instriction}. This form is intended to make it easy to 34 * <li> {@link Optimizer} is a singleton class containing methods for 37 * <li> {@link SsaConverter} converts a Rop-form method to SSA form. 38 * <li> {@link SsaToRop} converts an SSA-form method back to Rop form. 43 * <li> A {@link SsaMethod} instance represents a method. 44 * <li> A {@link SsaBasicBlock} instance represents a basic block, whose 46 * {@link com.android.dx.rop Rop form}. 47 * <li> {@link PhiInsn} instances represent "phi" operators defined in SSA 49 * <li> {@link NormalSsaInsn} instances represent instructions that directly 55 * <li> {@link MoveParamCombiner} is a simple step that ensures each metho [all...] |
/frameworks/base/core/java/android/bluetooth/ |
BluetoothProfile.java | 25 * <p> Clients should call {@link BluetoothAdapter#getProfileProxy}, 130 * <p> Return the set of devices which are in state {@link #STATE_CONNECTED} 132 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission. 145 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission. 148 * {@link #STATE_CONNECTED}, {@link #STATE_CONNECTING}, 149 * {@link #STATE_DISCONNECTED}, {@link #STATE_DISCONNECTING}, 157 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission. 161 * {@link #STATE_CONNECTED}, {@link #STATE_CONNECTING} [all...] |