Home
last modified time | relevance | path

Searched refs:launchIntent (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/
DNfcRootActivity.java33 final Intent launchIntent = intent.getParcelableExtra(EXTRA_LAUNCH_INTENT); in onCreate() local
34 if (launchIntent != null) { in onCreate()
36 startActivity(launchIntent); in onCreate()
/packages/apps/Browser/src/com/android/browser/
DOpenDownloadReceiver.java74 Intent launchIntent = new Intent(Intent.ACTION_VIEW); in onReceiveAsync() local
75 launchIntent.setDataAndType(uri, manager.getMimeTypeForDownloadedFile(id)); in onReceiveAsync()
76 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onReceiveAsync()
78 context.startActivity(launchIntent); in onReceiveAsync()
/packages/providers/ApplicationsProvider/src/com/android/providers/applications/
DApplicationLauncher.java92 Intent launchIntent = new Intent(Intent.ACTION_MAIN); in launchApplication() local
93 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | in launchApplication()
95 launchIntent.setComponent(componentName); in launchApplication()
97 startActivity(launchIntent); in launchApplication()
/packages/apps/Calendar/src/com/android/calendar/widget/
DCalendarAppWidgetProvider.java186 Intent launchIntent = new Intent(); in getLaunchPendingIntentTemplate() local
187 launchIntent.setAction(Intent.ACTION_VIEW); in getLaunchPendingIntentTemplate()
188 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | in getLaunchPendingIntentTemplate()
191 launchIntent.setClass(context, AllInOneActivity.class); in getLaunchPendingIntentTemplate()
193 launchIntent, PendingIntent.FLAG_UPDATE_CURRENT); in getLaunchPendingIntentTemplate()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
DGoogleSearch.java108 launchIntent(launchUriIntent); in handleWebSearchIntent()
150 private void launchIntent(Intent intent) { in launchIntent() method in GoogleSearch
/packages/apps/Settings/src/com/android/settings/widget/
DSettingsAppWidgetProvider.java716 Intent launchIntent = new Intent(); in getLaunchPendingIntent() local
717 launchIntent.setClass(context, SettingsAppWidgetProvider.class); in getLaunchPendingIntent()
718 launchIntent.addCategory(Intent.CATEGORY_ALTERNATIVE); in getLaunchPendingIntent()
719 launchIntent.setData(Uri.parse("custom:" + buttonId)); in getLaunchPendingIntent()
721 launchIntent, 0 /* no flags */); in getLaunchPendingIntent()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSearchActivity.java435 launchIntent(intent); in startSearch()
450 launchIntent(intent); in onVoiceSearchClicked()
485 protected void launchIntent(Intent intent) { in launchIntent() method in SearchActivity
522 launchIntent(intent); in launchSuggestion()
/packages/apps/Calendar/src/com/android/calendar/
DUtils.java1020 Intent launchIntent = new Intent(context, AllInOneActivity.class); in returnToCalendarHome() local
1021 launchIntent.setAction(Intent.ACTION_DEFAULT); in returnToCalendarHome()
1022 launchIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); in returnToCalendarHome()
1023 launchIntent.putExtra(INTENT_KEY_HOME, true); in returnToCalendarHome()
1024 context.startActivity(launchIntent); in returnToCalendarHome()