Window.AllowReturnTransitionOverlap Property

Definition

Returns how the transition set in #setExitTransition(android.transition.Transition) overlaps with the exit transition of the called Activity when reentering after if finishes. -or- Controls how the transition set in #setExitTransition(android.transition.Transition) overlaps with the exit transition of the called Activity when reentering after if finishes.

public virtual bool AllowReturnTransitionOverlap { [Android.Runtime.Register("getAllowReturnTransitionOverlap", "()Z", "GetGetAllowReturnTransitionOverlapHandler")] get; [Android.Runtime.Register("setAllowReturnTransitionOverlap", "(Z)V", "GetSetAllowReturnTransitionOverlap_ZHandler")] set; }
[<get: Android.Runtime.Register("getAllowReturnTransitionOverlap", "()Z", "GetGetAllowReturnTransitionOverlapHandler")>]
[<set: Android.Runtime.Register("setAllowReturnTransitionOverlap", "(Z)V", "GetSetAllowReturnTransitionOverlap_ZHandler")>]
member this.AllowReturnTransitionOverlap : bool with get, set

Property Value

true when the transition should start when possible or false when it should wait until the called Activity's exiting transition completes.

Attributes

Remarks

Property getter documentation:

Returns how the transition set in #setExitTransition(android.transition.Transition) overlaps with the exit transition of the called Activity when reentering after if finishes. When true, the transition will start as soon as possible. When false, the transition will wait until the called Activity's exiting transition completes before starting. The default value is true.

Java documentation for android.view.Window.getAllowReturnTransitionOverlap().

Property setter documentation:

Controls how the transition set in #setExitTransition(android.transition.Transition) overlaps with the exit transition of the called Activity when reentering after if finishes. When true, the transition will start as soon as possible. When false, the transition will wait until the called Activity's exiting transition completes before starting. The default value is true.

Java documentation for android.view.Window.setAllowReturnTransitionOverlap(boolean).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to