Android.App.Fragment.ExitTransition Property
Returns the Transition that will be used to move Views out of the scene when the fragment is removed, hidden, or detached when not popping the back stack.

Syntax

[get: Android.Runtime.Register("getExitTransition", "()Landroid/transition/Transition;", "GetGetExitTransitionHandler")]
[set: Android.Runtime.Register("setExitTransition", "(Landroid/transition/Transition;)V", "GetSetExitTransition_Landroid_transition_Transition_Handler")]
public virtual Android.Transitions.Transition ExitTransition { 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 out of the scene when the fragment is removed, hidden, or detached when not popping the back stack. The exiting Views will be those that are regular Views or ViewGroups that have Android.Views.ViewGroup.TransitionGroup return true. Typical Transitions will extend Android.Transitions.Visibility as exiting is governed by changing visibility from Android.Views.View.VISIBLE to Android.Views.View.INVISIBLE. If transition is null, the views will remain unaffected.

Set method documentation [Android Documentation]

Sets the Transition that will be used to move Views out of the scene when the fragment is removed, hidden, or detached when not popping the back stack. The exiting Views will be those that are regular Views or ViewGroups that have Android.Views.ViewGroup.TransitionGroup return true. Typical Transitions will extend Android.Transitions.Visibility as exiting is governed by changing visibility from Android.Views.View.VISIBLE to Android.Views.View.INVISIBLE. If transition is null, the views will remain unaffected.

Requirements

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