1

我正在使用以下代码进行一系列转弯(左转或右转)。因此,如果我一个接一个地调用它,即:turn(90); turn(90); turn(-90);它显示的只是最后一个。我想把它们都展示出来,它会等到第一个完成后再继续下一个。有任何想法吗?

public void turn(int i)
{

    RotateAnimation anim = new RotateAnimation( currentRotation, currentRotation + i,
                                                Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,0.5f);
                                                currentRotation = (currentRotation + i) % 360;

    anim.setInterpolator(new LinearInterpolator());
    anim.setDuration(1000);
    anim.setFillEnabled(true);

    anim.setFillAfter(true);
    token.startAnimation(anim);
}
4

1 回答 1

0

所以我所做的是创建一个动画队列和一个遍历它的迭代器......在我定义了所有需要完成的动画之后,将它们添加到队列中,我运行第一个,然后在 AnimationListener 中处理其余的部分。

Queue<RotateAnimation> que = new LinkedList<RotateAnimation>();
Iterator<RotateAnimation> queIt;


public void turnToken(int i){

    RotateAnimation anim = new RotateAnimation( currentRotation, currentRotation + i,
                                                Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,0.5f);
                                                currentRotation = (currentRotation + i) % 360;

    anim.setInterpolator(new LinearInterpolator());
    anim.setDuration(1000);
    anim.setFillEnabled(true);
    anim.setAnimationListener(this);
    anim.setFillAfter(true);

    que.add(anim);
}

动画监听器:

@Override
public void onAnimationEnd(Animation arg0) {
    // TODO Auto-generated method stub

    if(queIt.hasNext()){
        token.startAnimation((Animation) queIt.next());
        }
}

@Override
public void onAnimationRepeat(Animation arg0) {
    // TODO Auto-generated method stub
}

@Override
public void onAnimationStart(Animation arg0) {
    // TODO Auto-generated method stub

}
于 2013-10-22T16:16:51.587 回答