How do I pause frame animation using AnimationDrawable? [closed]

烂漫一生 提交于 2019-11-26 07:44:30

问题


How do I pause frame animation using AnimationDrawable?


回答1:


I realize this thread is quite old, but since this was the first answer on Google when I was searching for a way to pause an animation, I'll just post the solution here for someone else to see. What you need to do is subclass the animation type you'd like to use and then add methods for pausing and resuming the animation. Here is an example for AlphaAnimation:

public class PausableAlphaAnimation extends AlphaAnimation {

    private long mElapsedAtPause=0;
    private boolean mPaused=false;

    public PausableAlphaAnimation(float fromAlpha, float toAlpha) {
        super(fromAlpha, toAlpha);
    }

    @Override
    public boolean getTransformation(long currentTime, Transformation outTransformation) { 
        if(mPaused && mElapsedAtPause==0) {
            mElapsedAtPause=currentTime-getStartTime();
        }
        if(mPaused)
            setStartTime(currentTime-mElapsedAtPause);
        return super.getTransformation(currentTime, outTransformation);
    }

    public void pause() {
        mElapsedAtPause=0;
        mPaused=true;
    }

    public void resume() {
        mPaused=false;
    }
}

This will keep increasing your starttime while the animation is paused, effectively keeping it from finishing and keeping it's state where it was when you paused.

Hope it helps someone.




回答2:


From the API:

Animations do not have a pause method.

http://www.androidjavadoc.com/1.0_r1/android/view/animation/package-summary.html



来源:https://stackoverflow.com/questions/2864488/how-do-i-pause-frame-animation-using-animationdrawable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!