有人知道有没有XML动画可以让按钮弹几秒钟。如果你能和大家分享一些例子…

最佳答案

下面是一个使用objectanimator的简单方法。如果您想让它在蜂窝前工作,可以使用相同的语法并使用view animation,也可以使用NineOldAndroids.

ObjectAnimator animY = ObjectAnimator.ofFloat(button, "translationY", -100f, 0f);
animY.setDuration(1000);//1sec
animY.setInterpolator(new BounceInterpolator());
animY.setRepeatCount(numRepeats);
animY.start();

07-27 17:14