It seems that an android animation is not truly finished when the onAnimationEnd event is fired although animation.hasEnded is set to true.

I want my view to change it's background drawable on the end of it's ScaleAnimation which it does, but you can clearly see that it is changed some miliseconds before it finishes. The problem is, that it flickers because the new background appears (=is) scaled for a short time until the animation really finishes.

Is there a way to get either the real end of the animation or just prevent the new background from beeing scaled this short period of time?

Thank you!


//EDIT: I'm using an AnimationListener to get the following call:

    @Override
public void onAnimationEnd(Animation animation)
{
    View view = (MyView) ((ExtendedScaleAnimation) animation).getView();

    view.clearAnimation();
    view.requestLayout();
    view.refreshBackground(); // <-- this is where the background gets changed
}
link|improve this question

1  
Are you using an AnimationListener to get the OnAnimationEnd call, or some other way? Can you post the relavent code from your project so we have a better odea of whats going on? – Tim Jan 20 '11 at 18:57
Sure, thank you! I'm editing the question to add the code and some details. – ShadowMare Jan 20 '11 at 20:05
Could you please help me ShadowMare, I have the same problem and don't know how to resolve this – Ana Mar 14 at 11:40
Have you tried using the code provided below? That works for me. It basically lets the view handle the onAnimationEnd instead of the animation itself. Let me know if you need more assistance. – ShadowMare Mar 15 at 14:08
Hi @ShadowMare, could you please help me with this because I have a similar problem. – Ana Mar 16 at 15:35
show 1 more comment
feedback

3 Answers

up vote 9 down vote accepted

Here is the actual bug related to this issue http://code.google.com/p/android-misc-widgets/issues/detail?id=8

This basically states that the onAnimationEnd method doesn't really work well when an AnimationListener is attached to an Animation

The workaround is to listen for the animation events in the view to which you were applying the animation to For example if initially you were attaching the animation listener to the animation like this

    mAnimation.setAnimationListener(new AnimationListener() {
        @Override
        public void onAnimationEnd(Animation arg0) {
                           //Functionality here
        }

and then applying to the animation to a ImageView like this

    mImageView.startAnimation(mAnimation);

To work around this issue, you must now create a custom ImageView

    public Class myImageView extends ImageView {

and then override the onAnimationEnd method of the View class and provide all the functionality there

    @Override
    protected void onAnimationEnd() {
        super.onAnimationEnd();
        //Functionality here
    }

This is the proper workaround for this issue, provide the functionality in the over-riden View -> onAnimationEnd method as opposed to the onAnimationEnd method of the AnimationListener attached to the Animation.

This works properly and there is no longer any flicker towards the end of the animation. Hope this helps.

link|improve this answer
Thank you very much, that works like a charm!!! – ShadowMare Feb 28 '11 at 14:43
No problem, glad I could help :) – Soham Mar 2 '11 at 12:06
Could you please help me Soham, I have the same problem and don't know how to resolve this. – Ana Mar 14 at 11:40
Sure Ana, are you applying the animation to an ImageView? – Soham Mar 14 at 11:51
Yes exactly, I am applaying the animation to an imageView. I have created the view class but i am never entering in onAnimationEnd – Ana Mar 15 at 10:42
feedback

I was abe to resolve this by calling clearAnimation() on the view being animated inside onAnimationEnd, that took away the flicker Its weird why would anyone have to do that, as onAnimationEnd callback should have been called only if the animation has already ended. But I guess the answer lies in the depth of Framework on how view/layout handles animation callback. For now take it as a hack-free solution, that just works.

        animation.setAnimationListener(new AnimationListener() {

        public void onAnimationEnd(Animation anim) {
            innerView.clearAnimation();   // to get rid of flicker at end of animation

            RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams
            (innerBlockContainer.getWidth(), innerBlockContainer.getHeight());

            /* Update lp margin, left/top to update layout after end of Translation */
            ViewGroup parent_ofInnerView = (ViewGroup)innerView.getParent();
            vp.updateViewLayout(innerBlockContainer, lp);

        }

        public void onAnimationRepeat(Animation arg0) {}

        public void onAnimationStart(Animation arg0) {
        }

    });

     innerView.startAnimation(animation);
link|improve this answer
That didn't help in my case. The suggestion from Soham did, however. – Kris Van Bael Jul 10 '11 at 9:01
Wow! Simple one-line solution, worked like a charm! I just added the "view.clearAnimation();" before my "view.layout()" - and voila! :-) – Brad Oct 28 '11 at 16:48
feedback

For some reason the onAnimationStart works properly, and the onAnimationEnd doesnt. So heres how I originally did it and what I changed:

Attempt 1 (flicker): a) Move image from 0px to 80px b) In onAnimationEnd, set the image's location to 80px

Attempt 2 (no flicker): a) In onAnimationStart, set the image's location to 80px b) Move the image from -80px to 0px

Hope that made sense. Basically I flipped the way I did it

link|improve this answer
Thank you, that works well with a translate animation! – ShadowMare Feb 28 '11 at 15:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.