Android.Views.Window.ReenterTransition Property
Returns the Transition that will be used to move Views in to the scene when returning from a previously-started Activity.

Syntax

[get: Android.Runtime.Register("getReenterTransition", "()Landroid/transition/Transition;", "GetGetReenterTransitionHandler")]
[set: Android.Runtime.Register("setReenterTransition", "(Landroid/transition/Transition;)V", "GetSetReenterTransition_Landroid_transition_Transition_Handler")]
public virtual Android.Transitions.Transition ReenterTransition { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

Get method documentation [Android Documentation]

Returns the Transition that will be used to move Views in to the scene when returning from a previously-started Activity. The entering Views will be those that are regular Views or ViewGroups that have ViewGroup.TransitionGroup return true. Typical Transitions will extend Android.Transitions.Visibility as exiting is governed by changing visibility from View.VISIBLE to View.INVISIBLE. Requires Window.FEATURE_ACTIVITY_TRANSITIONS.

Set method documentation [Android Documentation]

Sets the Transition that will be used to move Views in to the scene when returning from a previously-started Activity. The entering Views will be those that are regular Views or ViewGroups that have ViewGroup.TransitionGroup return true. Typical Transitions will extend Android.Transitions.Visibility as exiting is governed by changing visibility from View.VISIBLE to View.INVISIBLE. If transition is null, the views will remain unaffected. If nothing is set, the default will be to use the same transition as Window.ExitTransition. Requires Window.FEATURE_ACTIVITY_TRANSITIONS.

Requirements

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