Searched refs:shortcutIntent (Results 1 - 8 of 8) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DShortcutIntentBuilder.java116 * @param shortcutIntent resulting shortcut intent.
118 void onShortcutIntentCreated(Uri uri, Intent shortcutIntent); argument
271 Intent shortcutIntent = new Intent(ContactsContract.QuickContact.ACTION_QUICK_CONTACT);
279 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK
283 shortcutIntent.putExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION, true);
285 shortcutIntent.setDataAndType(contactUri, contentType);
286 shortcutIntent.putExtra(ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES,
293 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
322 Intent shortcutIntent = new Intent(shortcutAction, phoneUri);
323 shortcutIntent
[all...]
H A DPhoneNumberPickerFragment.java300 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { argument
301 mListener.onShortcutIntentCreated(shortcutIntent);
/packages/apps/Settings/src/com/android/settings/
H A DCreateShortcut.java57 Intent shortcutIntent = intentForPosition(position);
58 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
62 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
/packages/apps/Browser/src/com/android/browser/
H A DBookmarkUtils.java117 Intent shortcutIntent = createShortcutIntent(url);
118 i.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
129 Intent shortcutIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
131 long uniqueId = (urlHash << 32) | shortcutIntent.hashCode();
132 shortcutIntent.putExtra(Browser.EXTRA_APPLICATION_ID, Long.toString(uniqueId));
133 return shortcutIntent;
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactPickerFragment.java198 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { argument
200 mListener.onShortcutIntentCreated(shortcutIntent);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DInstallShortcutReceiver.java167 Intent shortcutIntent) {
170 launchIntent = shortcutIntent;
166 PendingInstallShortcutInfo(Intent rawData, String shortcutName, Intent shortcutIntent) argument
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DQuickContactActivity.java2300 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) {
2301 // Broadcast the shortcutIntent to the launcher to create a
2303 shortcutIntent.setAction(ACTION_INSTALL_SHORTCUT);
2304 QuickContactActivity.this.sendBroadcast(shortcutIntent);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncher.java4561 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption, argument
4563 return new ShortcutInfo(shortcutIntent, caption, caption, icon,

Completed in 205 milliseconds