Window.AllowEnterTransitionOverlap Property

Definition

Returns how the transition set in #setEnterTransition(android.transition.Transition) overlaps with the exit transition of the calling Activity. -or- Controls how the transition set in #setEnterTransition(android.transition.Transition) overlaps with the exit transition of the calling Activity.

public virtual bool AllowEnterTransitionOverlap { [Android.Runtime.Register("getAllowEnterTransitionOverlap", "()Z", "GetGetAllowEnterTransitionOverlapHandler")] get; [Android.Runtime.Register("setAllowEnterTransitionOverlap", "(Z)V", "GetSetAllowEnterTransitionOverlap_ZHandler")] set; }
[<get: Android.Runtime.Register("getAllowEnterTransitionOverlap", "()Z", "GetGetAllowEnterTransitionOverlapHandler")>]
[<set: Android.Runtime.Register("setAllowEnterTransitionOverlap", "(Z)V", "GetSetAllowEnterTransitionOverlap_ZHandler")>]
member this.AllowEnterTransitionOverlap : bool with get, set

Property Value

true when the enter transition should start as soon as possible or false to when it should wait until the exiting transition completes.

Attributes

Remarks

Property getter documentation:

Returns how the transition set in #setEnterTransition(android.transition.Transition) overlaps with the exit transition of the calling Activity. When true, the transition will start as soon as possible. When false, the transition will wait until the remote exiting transition completes before starting. The default value is true.

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

Property setter documentation:

Controls how the transition set in #setEnterTransition(android.transition.Transition) overlaps with the exit transition of the calling Activity. When true, the transition will start as soon as possible. When false, the transition will wait until the remote exiting transition completes before starting. The default value is true.

Java documentation for android.view.Window.setAllowEnterTransitionOverlap(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