Animation.FillBefore Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
If fillBefore is true, this animation will apply its transformation before the start time of the animation. -or- If fillBefore is true, this animation will apply its transformation before the start time of the animation.
public virtual bool FillBefore { [Android.Runtime.Register("getFillBefore", "()Z", "GetGetFillBeforeHandler")] get; [Android.Runtime.Register("setFillBefore", "(Z)V", "GetSetFillBefore_ZHandler")] set; }
[<get: Android.Runtime.Register("getFillBefore", "()Z", "GetGetFillBeforeHandler")>]
[<set: Android.Runtime.Register("setFillBefore", "(Z)V", "GetSetFillBefore_ZHandler")>]
member this.FillBefore : bool with get, set
Property Value
true if the animation applies its transformation before it starts
- Attributes
Remarks
Property getter documentation:
If fillBefore is true, this animation will apply its transformation before the start time of the animation. If fillBefore is false and #isFillEnabled() fillEnabled
is true, the transformation will not be applied until the start time of the animation.
Java documentation for android.view.animation.Animation.getFillBefore()
.
Property setter documentation:
If fillBefore is true, this animation will apply its transformation before the start time of the animation. Defaults to true if #setFillEnabled(boolean)
is not set to true. Note that this applies when using an android.view.animation.AnimationSet AnimationSet
to chain animations. The transformation is not applied before the AnimationSet itself starts.
Java documentation for android.view.animation.Animation.setFillBefore(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.