我在屏幕上有一個ImageView,我想讓它搖動(向左旋轉,然後向右旋轉)。 我知道如何製作動畫的ImageView的,這是我的代碼:ImageView中的環狀動畫
new RotateAnimation(20f, 50f,Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(Animation.INFINITE);
anim.setDuration(700);
// Start animating the image
final ImageView splash = (ImageView) findViewById(R.id.mobileshake);
splash.startAnimation(anim);
的問題是,現在的ImageView的是循環一個動畫,但我想2個動畫循環(左轉再右轉)。
我該怎麼做?
對不起,我的英文不好..
謝謝!我也想出了一個不同的解決方案:P –