Android AnimatorSet.cancel() 不适用于 Marshmallow 版本设备
Android AnimatorSet.cancel() does not work on Marshmallow version devices
AnimatorSet animatorSet = new AnimatorSet();
ValueAnimator anim1 = ValueAnimator.ofFloat(0f, 1f);
ValueAnimator anim2 = ValueAnimator.ofFloat(1f, 0f);
~~~
animatorSet.play(anim1).after(anim2);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationCancel(Animator animation) {
Log.d("Testing", "cancel");
}
}
animatorSet.start();
button.setOnclickListener((v) -> {
animatorSet.cancel();
})
单击 Button
时,取消侦听器运行良好。但是,cancel()
仅在 API23
版本 (Marshmallow
) 中不被调用。
有什么问题吗?
尝试将您的 cancel()
方法修改为:
public void cancel() {
if (animatorSet != null) {
animatorSet.cancel();
}
if (next != null) {
next.cancel();
next = null;
}
}
它应该也适用于 API 23。如果没有,请分享您项目的更多代码以重建它并找到其他解决方案。
AnimatorSet animatorSet = new AnimatorSet();
ValueAnimator anim1 = ValueAnimator.ofFloat(0f, 1f);
ValueAnimator anim2 = ValueAnimator.ofFloat(1f, 0f);
~~~
animatorSet.play(anim1).after(anim2);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationCancel(Animator animation) {
Log.d("Testing", "cancel");
}
}
animatorSet.start();
button.setOnclickListener((v) -> {
animatorSet.cancel();
})
单击 Button
时,取消侦听器运行良好。但是,cancel()
仅在 API23
版本 (Marshmallow
) 中不被调用。
有什么问题吗?
尝试将您的 cancel()
方法修改为:
public void cancel() {
if (animatorSet != null) {
animatorSet.cancel();
}
if (next != null) {
next.cancel();
next = null;
}
}
它应该也适用于 API 23。如果没有,请分享您项目的更多代码以重建它并找到其他解决方案。