ImageButton
クリックすると回転するAndroid版があります。問題は、ユーザーがタップして次の行の新しいアクティビティに進んだときに回転が終了しないことです。私は試しましたが、アニメーションが始まる前に、これらThread.sleep(..)
と一緒に実際に眠ります。wait(..)
RotateAnimation(..)
アニメーションを実際に終了してから、に進む必要がありますstartActivity(new Intent(..))
これがコードです
amazingPicsButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
amazingPicsSound = createRandButSound();
amazingPicsSound.start();
rotateAnimation(v);
startActivity(new Intent("com.jasfiddle.AmazingInterface.AMAZINGPICS"));
}
});
}
/** function that produces rotation animation on the View v.
* Could be applied to button, ImageView, ImageButton, etc.
*/
public void rotateAnimation(View v){
// Create an animation instance
Animation an = new RotateAnimation(30, 360, v.getWidth()/2, v.getHeight()/2);
// Set the animation's parameters
an.setDuration(20); // duration in ms
an.setRepeatCount(10); // -1 = infinite repeated
// an.setRepeatMode(Animation.REVERSE); // reverses each repeat
an.setFillAfter(true); // keep rotation after animation
v.setAnimation(an);
// Apply animation to the View
}