Android.App.Activity.OnActivityReenter Method
Called when an activity you launched with an activity transition exposes this Activity through a returning activity transition, giving you the resultCode and any additional data from it.

Syntax

[Android.Runtime.Register("onActivityReenter", "(ILandroid/content/Intent;)V", "GetOnActivityReenter_ILandroid_content_Intent_Handler")]
public virtual void OnActivityReenter (int resultCode, Android.Content.Intent data)

Parameters

resultCode
The integer result code returned by the child activity through its setResult().
data
An Intent, which can return result data to the caller (various data can be attached to Intent "extras").

Remarks

Called when an activity you launched with an activity transition exposes this Activity through a returning activity transition, giving you the resultCode and any additional data from it. This method will only be called if the activity set a result code other than Activity.RESULT_CANCELED and it supports activity transitions with Android.Views.Window.FEATURE_ACTIVITY_TRANSITIONS.

The purpose of this function is to let the called Activity send a hint about its state so that this underlying Activity can prepare to be exposed. A call to this method does not guarantee that the called Activity has or will be exiting soon. It only indicates that it will expose this Activity's Window and it has some data to pass to prepare it.

[Android Documentation]

Requirements

Namespace: Android.App
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1