- intents
- An array of Intents to be started.
- options
- Additional options for how the Activity should be started. See Android.Content.Context.StartActivity(Android.Content.Intent, Android.OS.Bundle) for more details.
Launch multiple new activities. This is generally the same as calling Android.Content.Context.StartActivity(Android.Content.Intent) for the first Intent in the array, that activity during its creation calling Android.Content.Context.StartActivity(Android.Content.Intent) for the second entry, etc. Note that unlike that approach, generally none of the activities except the last in the array will be created at this point, but rather will be created when the user first visits them (due to pressing back from the activity on top).
This method throws Android.Content.ActivityNotFoundException if there was no Activity found for any given Intent. In this case the state of the activity stack is undefined (some Intents in the list may be on it, some not), so you probably want to avoid such situations.