Animation.FillAfter Property

Definition

If fillAfter is true, this animation will apply its transformation after the end time of the animation. -or- If fillAfter is true, the transformation that this animation performed will persist when it is finished.

public virtual bool FillAfter { [Android.Runtime.Register("getFillAfter", "()Z", "GetGetFillAfterHandler")] get; [Android.Runtime.Register("setFillAfter", "(Z)V", "GetSetFillAfter_ZHandler")] set; }
[<get: Android.Runtime.Register("getFillAfter", "()Z", "GetGetFillAfterHandler")>]
[<set: Android.Runtime.Register("setFillAfter", "(Z)V", "GetSetFillAfter_ZHandler")>]
member this.FillAfter : bool with get, set

Property Value

true if the animation applies its transformation after it ends

Attributes

Remarks

Property getter documentation:

If fillAfter is true, this animation will apply its transformation after the end time of the animation.

Java documentation for android.view.animation.Animation.getFillAfter().

Property setter documentation:

If fillAfter is true, the transformation that this animation performed will persist when it is finished. Defaults to false if not set. Note that this applies to individual animations and when using an android.view.animation.AnimationSet AnimationSet to chain animations.

Java documentation for android.view.animation.Animation.setFillAfter(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

See also