- context
- The Context in which this PendingIntent should start the activity.
- requestCode
- Private request code for the sender
- intent
- Intent of the activity to be launched.
- flags
- May be PendingIntent.FLAG_ONE_SHOT, PendingIntent.FLAG_NO_CREATE, PendingIntent.FLAG_CANCEL_CURRENT, PendingIntent.FLAG_UPDATE_CURRENT, or any of the flags as supported by Android.Content.Intent.FillIn(Android.Content.Intent, Android.Content.FillInFlags) to control which unspecified parts of the intent that can be supplied when the actual send happens.
- options
- Additional options for how the Activity should be started. May be null if there are no options.
Documentation for this section has not yet been entered.
Retrieve a PendingIntent that will start a new activity, like calling Android.Content.Context.StartActivity(Android.Content.Intent). Note that the activity will be started outside of the context of an existing activity, so you must use the Android.Content.Intent.FLAG_ACTIVITY_NEW_TASK launch flag in the Intent.
For security reasons, the Android.Content.Intent you supply here should almost always be an explicit intent, that is specify an explicit component to be delivered to through Android.Content.Intent.setClass(android.content.Context, java.lang.Class<?>)