Searched refs:shortcutIntent (Results 1 – 8 of 8) sorted by relevance
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
D | ShortcutIntentBuilder.java | 118 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()
|
D | PhoneNumberPickerFragment.java | 300 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { in onShortcutIntentCreated() argument 301 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 | 57 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/ |
D | ContactPickerFragment.java | 198 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) { in onShortcutIntentCreated() argument 200 mListener.onShortcutIntentCreated(shortcutIntent); in onShortcutIntentCreated()
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
D | InstallShortcutReceiver.java | 167 Intent shortcutIntent) { in PendingInstallShortcutInfo() argument 170 launchIntent = shortcutIntent; in PendingInstallShortcutInfo()
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
D | QuickContactActivity.java | 2339 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/ |
D | Launcher.java | 4559 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption, in createShortcutDragInfo() argument 4561 return new ShortcutInfo(shortcutIntent, caption, caption, icon, in createShortcutDragInfo()
|