HomeSort by relevance Sort by last modified time
    Searched full:shortcutintent (Results 1 - 8 of 8) sorted by null

  /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);
  /packages/apps/Contacts/src/com/android/contacts/list/
ShortcutIntentBuilder.java 98 * @param shortcutIntent resulting shortcut intent.
100 void onShortcutIntentCreated(Uri uri, Intent shortcutIntent);
248 Intent shortcutIntent;
250 shortcutIntent = new Intent(ContactsContract.QuickContact.ACTION_QUICK_CONTACT);
251 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
254 shortcutIntent.setData(contactUri);
255 shortcutIntent.putExtra(ContactsContract.QuickContact.EXTRA_MODE,
257 shortcutIntent.putExtra(ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES,
259 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
265 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
    [all...]
ContactPickerFragment.java 208 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) {
209 mListener.onShortcutIntentCreated(shortcutIntent);
PhoneNumberPickerFragment.java 231 public void onShortcutIntentCreated(Uri uri, Intent shortcutIntent) {
232 mListener.onShortcutIntentCreated(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);
  /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/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 951 milliseconds