- id
- Unique identifier of the activity to be started
- intent
- The Intent describing the activity to be started
Documentation for this section has not yet been entered.
Type Reason Android.Content.ActivityNotFoundException
Start a new activity running in the group. Every activity you start must have a unique string ID associated with it -- this is used to keep track of the activity, so that if you later call startActivity() again on it the same activity object will be retained.
When there had previously been an activity started under this id, it may either be destroyed and a new one started, or the current one re-used, based on these conditions, in order:
If the given Intent can not be resolved to an available Activity, this method throws Android.Content.ActivityNotFoundException.
Warning: There is an issue where, if the Intent does not include an explicit component, we can restore the state for a different activity class than was previously running when the state was saved (if the set of available activities changes between those points).