ImageView上的多次旋转

时间:2014-09-28 21:16:13

标签: android rotation android-imageview android-ui

我想将ImageView旋转2次

最初它将旋转360度,然后额外一定程度..

我正在使用以下代码

protected void rotation(int start, int end, int time) {
    Animation a = new RotateAnimation((float)start, (float)end,
            Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,0.5f);
    a.setDuration((long)time);
    a.setInterpolator(new LinearInterpolator());
    a.setFillAfter(true);
    ImageView.startAnimation(a);
}

我的问题是 我正在调用此函数2次,因此它不会先等待并直接开始第二次旋转。

我想等到第一次轮换完成然后开始第二次轮换

1 个答案:

答案 0 :(得分:2)

在第一个动画中设置一个监听器

a.setAnimationListener(new Animation.AnimationListener() {
                @Override
                public void onAnimationStart(Animation animation) {

                }

                @Override
                public void onAnimationEnd(Animation animation) {
                    callNewAnimation();
                }

                @Override
                public void onAnimationRepeat(Animation animation) {

                }
            });