我想在动画运行时禁用点击按钮。 代码如下:
AlphaAnimation anim = new AlphaAnimation(0.0f, 1.0f);
anim.setDuration(4000);
anim.setRepeatMode(Animation.REVERSE);
btnTag.startAnimation(anim);
所以我想不能点击按钮直到完成动画。
答案 0 :(得分:1)
我通常会使用AnimationListener来完成这样的事情。它允许您在动画的各个阶段运行代码。
此代码未经测试,但其外观应为:
AlphaAnimation anim = new AlphaAnimation(0.0f, 1.0f);
anim.setDuration(4000);
anim.setRepeatMode(Animation.REVERSE);
anim.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
btnTag.setClickable(false);
}
@Override
public void onAnimationEnd(Animation animation) {
btnTag.setClickable(true);
}
@Override
public void onAnimationRepeat(Animation animation) {}
});
btnTag.startAnimation(anim);
不确定btnTag是您的按钮还是按住按钮的视图,但是调用按钮的setClickable(boolean clickable)
方法来启用和禁用按钮。
答案 1 :(得分:0)
我想分享我为这个问题找到的解决方案,给那些使用数据绑定的人:
binding.ivImage.setOnClickListener {
binding.ivImage.animate().apply {
duration=1000
scaleXBy(.5f)
scaleYBy(.5f)
rotationYBy(360f)
translationYBy(200f)
}.withEndAction {
binding.ivImage.animate().apply {
duration = 1000
scaleXBy(-.5f)
scaleYBy(-.5f)
rotationXBy(360f)
translationYBy(-200f)
}
}
}
binding.ivImage.animate().setListener(object: Animator.AnimatorListener{
override fun onAnimationStart(p0: Animator?) {
binding.ivImage.isClickable=false
binding.ivImage.isEnabled=false
}
override fun onAnimationEnd(p0: Animator?) {
binding.ivImage.isClickable=true
binding.ivImage.isEnabled=true
}
override fun onAnimationCancel(p0: Animator?) {
binding.ivImage.isClickable=true
binding.ivImage.isEnabled=true
}
override fun onAnimationRepeat(p0: Animator?) {
TODO("Not yet implemented")
}
})