0
我在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會運行動畫。我只想讓動畫只運行一次。我應該添加什麼?