Animation.setFillAfter/Before - Do they work/What are they for?

AndroidAndroid Animation

Android Problem Overview


As in the title of my question what are the methods setFillBefore() and setFillAfter() supposed to do?

I was hoping setFillAfter() would make the change to the View permanent after an animation has completed, but this is incorrect?

Android Solutions


Solution 1 - Android

The answer is yes, they do work, just probably not for what you expect - for instance, the description for setFillAfter(boolean fillAfter) says

> If fillAfter is true, the > transformation that this animation > performed will persist when it is > finished.

and when set to true it does do this.

However, unintuitively an animation on Android does not actually animate the View itself, rather it animates a bitmap representation of the View.

The issue you are probably having is that after an animation the View goes back to being how it was before the animation - setFillAfter and setFillBefore cannot help you with that, because in that situation what you really want to do is set the properties of the View to be same as the animated representation (they are separate things), and setFillAfter and setFillBefore only apply to animation properties, not View properties.

The reason they exist is for chaining animations. Suppose you had a translate animation followed by a fade out. If you did not set setFillAfter(true) on the translate animation, then the View would translate, jump back to it's original position and then fade out. With setFillAfter(true) set on the translate animation, the view will move and then fade out at it's current spot.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionD-DᴙumView Question on Stackoverflow
Solution 1 - AndroidJoseph EarlView Answer on Stackoverflow