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

  /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 37 Intent shortcutIntent = intentForPosition(position);
38 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
42 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, 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);
  /packages/apps/Email/src/com/android/email/activity/
ShortcutPicker.java 138 final Intent shortcutIntent;
140 shortcutIntent = MessageList.createFroyoIntent(myActivity, account);
141 Log.d(Logging.LOG_TAG, "Created old style intent: " + shortcutIntent);
145 shortcutIntent = Welcome.createOpenMessageIntent(
149 shortcutIntent = Welcome.createAccountShortcutIntent(myActivity, uuid, mailboxId);
155 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ShortcutIntentBuilder.java 105 * @param shortcutIntent resulting shortcut intent.
107 void onShortcutIntentCreated(Uri uri, Intent shortcutIntent);
257 Intent shortcutIntent = new Intent(ContactsContract.QuickContact.ACTION_QUICK_CONTACT);
263 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
266 shortcutIntent.putExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION, true);
268 shortcutIntent.setDataAndType(contactUri, contentType);
269 shortcutIntent.putExtra(ContactsContract.QuickContact.EXTRA_MODE,
271 shortcutIntent.putExtra(ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES,
278 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
305 Intent shortcutIntent = new Intent(shortcutAction, phoneUri)
    [all...]
  /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;
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindowManager.java     [all...]

Completed in 523 milliseconds