Android.Views.Window.ReturnTransition Property
Returns he Transition that will be used to move Views out of the scene when the Window is preparing to close, for example after a call to Android.App.Activity.FinishAfterTransition.

Syntax

[get: Android.Runtime.Register("getReturnTransition", "()Landroid/transition/Transition;", "GetGetReturnTransitionHandler")]
[set: Android.Runtime.Register("setReturnTransition", "(Landroid/transition/Transition;)V", "GetSetReturnTransition_Landroid_transition_Transition_Handler")]
public virtual Android.Transitions.Transition ReturnTransition { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

Get method documentation [Android Documentation]

Returns he Transition that will be used to move Views out of the scene when the Window is preparing to close, for example after a call to Android.App.Activity.FinishAfterTransition. The exiting Views will be those that are regular Views or ViewGroups that have ViewGroup.TransitionGroup return true. Typical Transitions will extend Android.Transitions.Visibility as entering is governed by changing visibility from View.VISIBLE to View.INVISIBLE.

Set method documentation [Android Documentation]

Sets the Transition that will be used to move Views out of the scene when the Window is preparing to close, for example after a call to Android.App.Activity.FinishAfterTransition. The exiting Views will be those that are regular Views or ViewGroups that have ViewGroup.TransitionGroup return true. Typical Transitions will extend Android.Transitions.Visibility as entering is governed by changing visibility from View.VISIBLE to View.INVISIBLE. If transition is null, entering Views will remain unaffected. If nothing is set, the default will be to use the same value as set in Window.EnterTransition.

Requirements

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