1

嗨,我在这里做一个应用程序,当我的活动开始时,我需要先旋转图像,然后我需要将图像从顶部移动到中心,我必须在一段时间后缩放我的图像,我必须在我的图像视图中可见,我尝试使用下面代码首先我应用了旋转动画然后我应用了平移动画。2秒后我应用了缩放动画但图像没有在中心缩放它以 imagview 原始位置(顶部)在那里缩放但我需要在移动动画后缩放 imageview 在哪里那个位置我需要缩放图像视图......任何人都建议如何将不同的动画应用于单个图像视图。

public class A extends Activity{

TranslateAnimation moveLefttoRight1;
Animation logoMoveAnimation;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
     setContentView(R.layout.game);

final ImageView myImage = (ImageView)findViewById(R.id.imageView1);

     //rotate animation
     final Animation myRotation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.rotator);
        myImage.startAnimation(myRotation);


        //translate animation
        moveLefttoRight1 = new TranslateAnimation(0, 0, 0, 200);
        moveLefttoRight1.setDuration(2000);
        moveLefttoRight1.setFillAfter(true);
        myImage.startAnimation(moveLefttoRight1);

        //scale animation
      logoMoveAnimation = AnimationUtils.loadAnimation(this, R.anim.sacle); 
          Handler handler = new Handler();
            handler.postDelayed(new Runnable() {
                public void run() {

                    myImage.startAnimation(logoMoveAnimation);
                }
            }, 2000);


}
}
4

1 回答 1

0

使用动画监听器。

当得到动画结束时开始另一个动画。

为了更好的参考

http://developer.android.com/reference/android/view/animation/Animation.AnimationListener.html

http://www.techrepublic.com/blog/android-app-builder/how-to-use-android-animation-listeners/

于 2013-08-10T12:45:37.193 回答