Home | History | Annotate | Download | only in provider

Lines Matching refs:INTENT

29 import android.content.Intent;
68 // Intent actions for Settings
140 * This intent MUST be started using
145 * {@link #EXTRA_AIRPLANE_MODE_ENABLED} extra to this Intent with the state specified.
146 * If there is no extra in this Intent, no changes will be made.
417 * {@link #EXTRA_INPUT_METHOD_ID} extra to this Intent with the input method id.
418 * If there is no extra in this Intent, subtypes from all installed input methods
450 * it is guaranteed there will always be an appropriate implementation for this Intent action.
554 * Input: The Intent's data URI specifies the application package name
598 * {@link #EXTRA_AUTHORITIES} extra to this Intent with one or more syncable content provider's
617 * extra to the Intent with one or more syncable content provider's authorities. Only account
621 * Intent with one or more account types.
885 * that can satisfy the {@link Intent#CATEGORY_HOME} intent, this screen allows you
922 // End of Intent actions for Settings
956 * This can be passed as an extra field in an Activity Intent with one or more syncable content
960 * Example: The {@link #ACTION_ADD_ACCOUNT} intent restricts the account types available based
969 * This can be passed as an extra field in an Activity Intent with one or more account types
973 * Example: The {@link #ACTION_ADD_ACCOUNT} intent restricts the account types to the specified
983 * This can be passed as an extra field in an Activity Intent with a single
987 * Example: The {@link #ACTION_INPUT_METHOD_SETTINGS} intent opens the keyboard layout
998 * intent as a boolean.
3603 * {@link Intent#ACTION_INSTALL_PACKAGE} mechanism.
3605 * <p>1 = permit app installation via the system package installer intent
5329 * intent is fired to indicate a transition of network status from "active" to "idle". Any
5331 * ACTION_DATA_ACTIVITY_CHANGE} intent indicating transition from "idle" to "active".
6503 * URL for intent firewall updates
6510 * URL for intent firewall update metadata
7015 * Intent URL, allowing it to be either a web page or a particular
7061 * The Intent URL of the bookmark, describing what it points to. This
7062 * value is given to {@link android.content.Intent#getIntent} to create
7063 * an Intent that can be launched.
7066 public static final String INTENT = "intent";
7080 private static final String[] sIntentProjection = { INTENT };
7085 * Convenience function to retrieve the bookmarked Intent for a
7091 * @return Intent The bookmarked URL, or null if there is no bookmark
7094 public static Intent getIntentForShortcut(ContentResolver cr, char shortcut)
7096 Intent intent = null;
7103 while (intent == null && c.moveToNext()) {
7105 String intentURI = c.getString(c.getColumnIndexOrThrow(INTENT));
7106 intent = Intent.parseUri(intentURI, 0);
7111 Log.w(TAG, "Intent column not found", e);
7118 return intent;
7125 * @param intent The desired target of the bookmark.
7127 * or it should be resolved to the intent's title.
7136 Intent intent,
7152 values.put(INTENT, intent.toUri(0));
7180 * and {@link #INTENT} columns.
7186 int intentColumn = cursor.getColumnIndex(INTENT);
7189 "The cursor must contain the TITLE and INTENT columns.");
7202 Intent intent;
7204 intent = Intent.parseUri(intentUri, 0);
7210 ResolveInfo info = packageManager.resolveActivity(intent, 0);