我在Android中的动画按钮有一些问题。这是我的代码:
private void RunAnimations() {
Animation a = AnimationUtils.loadAnimation(this, R.anim.alpha);
a.reset();
Button tv = (Button) findViewById(R.id.button1);
tv.clearAnimation();
tv.startAnimation(a);}
@Override
public boolean onTouchEvent(MotionEvent event){
if(event.getAction()== MotionEvent.ACTION_DOWN){
RunAnimations();
}
return false;
}
问题是如果屏幕OnTouch将运行动画。我希望动画只运行一次。我应该添加什么?
答案 0 :(得分:0)
您可以向班级boolean
添加animationRun = false
,然后
public boolean onTouchEvent(MotionEvent event){
if(!animationRun && event.getAction()== MotionEvent.ACTION_DOWN){
RunAnimations();
animationRun = true;
}
return false;
}
我更喜欢在播放动画后删除事件处理程序,但我不太了解Android API,因此无法为您提供帮助。