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

  /packages/apps/Nfc/src/com/android/nfc/
NfcRootActivity.java 26 static final String EXTRA_LAUNCH_INTENT = "launchIntent";
33 final Intent launchIntent = intent.getParcelableExtra(EXTRA_LAUNCH_INTENT);
34 if (launchIntent != null) {
36 startActivity(launchIntent);
  /packages/apps/Browser/src/com/android/browser/
OpenDownloadReceiver.java 74 Intent launchIntent = new Intent(Intent.ACTION_VIEW);
75 launchIntent.setDataAndType(uri, manager.getMimeTypeForDownloadedFile(id));
76 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
78 context.startActivity(launchIntent);
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationLauncher.java 92 Intent launchIntent = new Intent(Intent.ACTION_MAIN);
93 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
95 launchIntent.setComponent(componentName);
97 startActivity(launchIntent);
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetProvider.java 186 Intent launchIntent = new Intent();
187 launchIntent.setAction(Intent.ACTION_VIEW);
188 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
191 launchIntent.setClass(context, AllInOneActivity.class);
193 launchIntent, PendingIntent.FLAG_UPDATE_CURRENT);
  /frameworks/base/core/java/android/widget/
ShareActionProvider.java 280 Intent launchIntent = dataModel.chooseActivity(itemId);
281 if (launchIntent != null) {
282 mContext.startActivity(launchIntent);
ActivityChooserView.java 548 Intent launchIntent = mAdapter.getDataModel().chooseActivity(position);
549 if (launchIntent != null) {
550 mContext.startActivity(launchIntent);
565 Intent launchIntent = mAdapter.getDataModel().chooseActivity(index);
566 if (launchIntent != null) {
567 mContext.startActivity(launchIntent);
SearchView.java     [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSearch.java 108 launchIntent(launchUriIntent);
150 private void launchIntent(Intent intent) {
  /packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java 716 Intent launchIntent = new Intent();
717 launchIntent.setClass(context, SettingsAppWidgetProvider.class);
718 launchIntent.addCategory(Intent.CATEGORY_ALTERNATIVE);
719 launchIntent.setData(Uri.parse("custom:" + buttonId));
721 launchIntent, 0 /* no flags */);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 199 Intent launchIntent = new Intent(Intent.ACTION_VIEW);
200 launchIntent.setDataAndType(params.imageUri, "image/png");
201 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
206 .setContentIntent(PendingIntent.getActivity(params.context, 0, launchIntent, 0))
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java 435 launchIntent(intent);
450 launchIntent(intent);
485 protected void launchIntent(Intent intent) {
486 if (DBG) Log.d(TAG, "launchIntent " + intent);
522 launchIntent(intent);
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java     [all...]
  /frameworks/base/core/java/android/app/
SearchDialog.java 540 launchIntent(intent);
546 private void launchIntent(Intent intent) {

Completed in 387 milliseconds