单击处理程序完成后启动Android按钮动画

时间:2017-09-01 15:13:34

标签: android android-animation android-button

我可以看到点击按钮时动画在onClick方法中的内容完成后开始,想知道这是Android错误还是正常行为?。我可以找到一些关于人们在动画结束后搜索如何开始的帖子(this one e.g.),所以我并不孤单,但是我认为这根本不是逻辑< / STRONG>?

1 个答案:

答案 0 :(得分:0)

   YouButton. setOnTouchListener(
    new View.OnTouchListener() {
    public boolean onTouch(View myView, 
    MotionEvent event) {
        int action = event.getAction();
        if (action==MotionEvent.ACTION_UP)
        {
            //after animation 
        }
        if (action==MotionEvent.ACTION_DOWN)
        {
          //your animation 
        }
        return true;
    }
}