HomeSort by relevance Sort by last modified time
    Searched refs:shortcutIntent (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ShortcutHelper.java 68 Intent shortcutIntent;
80 shortcutIntent = new Intent();
81 shortcutIntent.setAction(sFullScreenAction);
82 shortcutIntent.putExtra(EXTRA_ICON, encodedIcon);
83 shortcutIntent.putExtra(EXTRA_ID, UUID.randomUUID().toString());
84 shortcutIntent.putExtra(EXTRA_TITLE, title);
85 shortcutIntent.putExtra(EXTRA_URL, url);
92 shortcutIntent.putExtra(EXTRA_MAC, encodedMac);
95 shortcutIntent = BookmarkUtils.createShortcutIntent(context, url);
98 shortcutIntent.setPackage(context.getPackageName())
    [all...]
BookmarkUtils.java 47 * @param shortcutIntent Intent to fire when the shortcut is activated.
55 public static Intent createAddToHomeIntent(Context context, Intent shortcutIntent, String title,
58 i.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
78 Intent shortcutIntent = createShortcutIntent(context, url);
80 context, shortcutIntent, title, favicon, rValue, gValue, bValue);
90 Intent shortcutIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
91 shortcutIntent.putExtra(REUSE_URL_MATCHING_TAB_ELSE_NEW_TAB, true);
92 return shortcutIntent;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
Somnambulator.java 41 Intent shortcutIntent = new Intent(this, Somnambulator.class);
42 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
47 resultIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LauncherShortcuts.java 124 Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
125 shortcutIntent.setClassName(this, this.getClass().getName());
126 shortcutIntent.putExtra(EXTRA_KEY, "ApiDemos Provided This Shortcut");
131 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
  /packages/apps/Settings/src/com/android/settings/
CreateShortcut.java 41 Intent shortcutIntent = intentForPosition(position);
42 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
46 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ShortcutIntentBuilder.java 116 * @param shortcutIntent resulting shortcut intent.
118 void onShortcutIntentCreated(Uri uri, Intent shortcutIntent);
268 Intent shortcutIntent = new Intent(ContactsContract.QuickContact.ACTION_QUICK_CONTACT);
276 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK
280 shortcutIntent.putExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION, true);
282 shortcutIntent.setDataAndType(contactUri, contentType);
283 shortcutIntent.putExtra(ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES,
290 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
319 Intent shortcutIntent = new Intent(shortcutAction, phoneUri);
320 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
    [all...]
PhoneNumberPickerFragment.java 285 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) {
286 mListener.onShortcutIntentCreated(shortcutIntent);
  /packages/apps/Browser/src/com/android/browser/
BookmarkUtils.java 117 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/
ContactPickerFragment.java 192 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) {
193 mListener.onShortcutIntentCreated(shortcutIntent);
  /packages/apps/Launcher2/src/com/android/launcher2/
InstallShortcutReceiver.java 167 Intent shortcutIntent) {
170 launchIntent = shortcutIntent;
  /packages/apps/Launcher3/src/com/android/launcher3/
InstallShortcutReceiver.java 212 Intent shortcutIntent) {
215 launchIntent = shortcutIntent;
Launcher.java     [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindowManager.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java     [all...]

Completed in 307 milliseconds