Searched refs:shortcutIntent (Results 1 – 9 of 9) sorted by relevance
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
D | ShortcutIntentBuilder.java | 113 void onShortcutIntentCreated(Uri uri, Intent shortcutIntent); in onShortcutIntentCreated() argument 265 Intent shortcutIntent = new Intent(ContactsContract.QuickContact.ACTION_QUICK_CONTACT); in createContactShortcutIntent() local 271 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); in createContactShortcutIntent() 274 shortcutIntent.putExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION, true); in createContactShortcutIntent() 276 shortcutIntent.setDataAndType(contactUri, contentType); in createContactShortcutIntent() 277 shortcutIntent.putExtra(ContactsContract.QuickContact.EXTRA_MODE, in createContactShortcutIntent() 279 shortcutIntent.putExtra(ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES, in createContactShortcutIntent() 286 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); in createContactShortcutIntent() 315 Intent shortcutIntent = new Intent(shortcutAction, phoneUri); in createPhoneNumberShortcutIntent() local 316 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); in createPhoneNumberShortcutIntent() [all …]
|
D | PhoneNumberPickerFragment.java | 285 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { in onShortcutIntentCreated() argument 286 mListener.onShortcutIntentCreated(shortcutIntent); in onShortcutIntentCreated()
|
/packages/apps/Browser/src/com/android/browser/ |
D | BookmarkUtils.java | 117 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/ |
D | CreateShortcut.java | 42 Intent shortcutIntent = intentForPosition(position); in onListItemClick() local 43 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED); in onListItemClick() 47 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); in onListItemClick()
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
D | ContactLoaderFragment.java | 373 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { in createLauncherShortcutWithContact() 376 shortcutIntent.setAction(ACTION_INSTALL_SHORTCUT); in createLauncherShortcutWithContact() 377 parentActivity.sendBroadcast(shortcutIntent); in createLauncherShortcutWithContact()
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
D | ContactPickerFragment.java | 186 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { in onShortcutIntentCreated() argument 187 mListener.onShortcutIntentCreated(shortcutIntent); in onShortcutIntentCreated()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | InstallShortcutReceiver.java | 209 Intent shortcutIntent) { in PendingInstallShortcutInfo() argument 212 launchIntent = shortcutIntent; in PendingInstallShortcutInfo()
|
D | Launcher.java | 4414 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption, in createShortcutDragInfo() argument 4416 return new ShortcutInfo(shortcutIntent, caption, icon); in createShortcutDragInfo()
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
D | InstallShortcutReceiver.java | 167 Intent shortcutIntent) { in PendingInstallShortcutInfo() argument 170 launchIntent = shortcutIntent; in PendingInstallShortcutInfo()
|