Home
last modified time | relevance | path

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

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DShortcutIntentBuilder.java118 void onShortcutIntentCreated(Uri uri, Intent shortcutIntent); in onShortcutIntentCreated() argument
271 Intent shortcutIntent = new Intent(ContactsContract.QuickContact.ACTION_QUICK_CONTACT); in createContactShortcutIntent() local
279 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK in createContactShortcutIntent()
283 shortcutIntent.putExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION, true); in createContactShortcutIntent()
285 shortcutIntent.setDataAndType(contactUri, contentType); in createContactShortcutIntent()
286 shortcutIntent.putExtra(ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES, in createContactShortcutIntent()
293 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); in createContactShortcutIntent()
322 Intent shortcutIntent = new Intent(shortcutAction, phoneUri); in createPhoneNumberShortcutIntent() local
323 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); in createPhoneNumberShortcutIntent()
327 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); in createPhoneNumberShortcutIntent()
DPhoneNumberPickerFragment.java300 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { in onShortcutIntentCreated() argument
301 mListener.onShortcutIntentCreated(shortcutIntent); in onShortcutIntentCreated()
/packages/apps/Browser/src/com/android/browser/
DBookmarkUtils.java117 Intent shortcutIntent = createShortcutIntent(url); in createAddToHomeIntent() local
118 i.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); in createAddToHomeIntent()
129 Intent shortcutIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); in createShortcutIntent() local
131 long uniqueId = (urlHash << 32) | shortcutIntent.hashCode(); in createShortcutIntent()
132 shortcutIntent.putExtra(Browser.EXTRA_APPLICATION_ID, Long.toString(uniqueId)); in createShortcutIntent()
133 return shortcutIntent; in createShortcutIntent()
/packages/apps/Settings/src/com/android/settings/
DCreateShortcut.java57 Intent shortcutIntent = intentForPosition(position); in onListItemClick() local
58 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED); in onListItemClick()
62 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); in onListItemClick()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactPickerFragment.java198 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { in onShortcutIntentCreated() argument
200 mListener.onShortcutIntentCreated(shortcutIntent); in onShortcutIntentCreated()
/packages/apps/Launcher2/src/com/android/launcher2/
DInstallShortcutReceiver.java167 Intent shortcutIntent) { in PendingInstallShortcutInfo() argument
170 launchIntent = shortcutIntent; in PendingInstallShortcutInfo()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DQuickContactActivity.java2339 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { in createLauncherShortcutWithContact()
2342 shortcutIntent.setAction(ACTION_INSTALL_SHORTCUT); in createLauncherShortcutWithContact()
2343 QuickContactActivity.this.sendBroadcast(shortcutIntent); in createLauncherShortcutWithContact()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncher.java4559 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption, in createShortcutDragInfo() argument
4561 return new ShortcutInfo(shortcutIntent, caption, caption, icon, in createShortcutDragInfo()