Home
last modified time | relevance | path

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

/development/samples/training/testingfun/app/tests/src/com/example/android/testingfun/tests/lesson4/
DLaunchActivityTest.java81 final Intent launchIntent = getStartedActivityIntent(); in testNextActivityWasLaunchedWithIntent() local
83 assertNotNull("Intent was null", launchIntent); in testNextActivityWasLaunchedWithIntent()
88 final String payload = launchIntent.getStringExtra(NextActivity.EXTRAS_PAYLOAD_KEY); in testNextActivityWasLaunchedWithIntent()
/development/samples/MultiDisplay/src/com/example/android/multidisplay/launcher/
DLauncherActivity.java200 void launch(Intent launchIntent) { in launch() argument
201 launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in launch()
203 launchIntent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK); in launch()
210 startActivity(launchIntent, options.toBundle()); in launch()