- intent
- An intent containing all of the desired specification (action, data, type, category, and/or component).
- flags
- Additional option flags. The most important is PackageManager.MATCH_DEFAULT_ONLY, to limit the resolution to only those activities that support the Android.Content.Intent.CategoryDefault.
Documentation for this section has not yet been entered.
Determine the best action to perform for a given Intent. This is how Android.Content.Intent.ResolveActivity(PackageManager) finds an activity if a class has not been explicitly specified.
Note: if using an implicit Intent (without an explicit ComponentName specified), be sure to consider whether to set the PackageManager.MATCH_DEFAULT_ONLY only flag. You need to do so to resolve the activity in the same way that Android.Content.Context.StartActivity(Android.Content.Intent) and Android.Content.Intent.ResolveActivity(PackageManager) do.