Fragment.AllowEnterTransitionOverlap Property

Definition

Returns whether the exit transition and enter transition overlap or not. -or- Sets whether the exit transition and enter transition overlap or not.

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 whether the exit transition and enter transition overlap or not. When true, the enter transition will start as soon as possible. When false, the enter transition will wait until the exit transition completes before starting.

Java documentation for android.app.Fragment.getAllowEnterTransitionOverlap().

Property setter documentation:

Sets whether the exit transition and enter transition overlap or not. When true, the enter transition will start as soon as possible. When false, the enter transition will wait until the exit transition completes before starting.

Java documentation for android.app.Fragment.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