ボタンがクリックされたときにImageView
のアニメーションを停止しようとしています。私が使用しているアニメーションは、5つのAnimatorSet
で構成されるObjectAnimators
です...問題は、ボタンがbtn.clearAnimation()
としてクリックされたときにImageView
からこのアニメーションを停止してクリアする方法を理解できないことです。 t動作します。
ご協力ありがとうございました。
animatorSet.cancel()
を呼び出してアニメーションをキャンセルできるはずです。アニメーションが開始してから5秒後にキャンセルする例を次に示します。
package com.example.myapp2;
import Android.animation.Animator;
import Android.animation.AnimatorSet;
import Android.animation.ObjectAnimator;
import Android.app.Activity;
import Android.os.Bundle;
import Android.os.Handler;
import Android.widget.TextView;
import Java.util.ArrayList;
import Java.util.List;
public class MyActivity extends Activity {
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView tv = (TextView) findViewById(R.id.hello_world);
List<Animator> animations = new ArrayList<Animator>();
animations.add(ObjectAnimator.ofInt(tv, "left", 100, 1000).setDuration(10000));
animations.add(ObjectAnimator.ofFloat(tv, "textSize", 10, 50).setDuration(10000));
final AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(animations);
animatorSet.start();
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
animatorSet.cancel();
}
}, 5000);
}
}
AnimatorSet
リスナーを追加した場合は、キャンセルする前にリスナーを削除してください。
animatorSet.removeAllListeners();
animatorSet.end();
animatorSet.cancel();