内容简介:翻译自:https://stackoverflow.com/questions/15189514/how-to-cancel-an-animation-but-not-to-end-it
我班上有TranslateAnimation.动画自动开始.
我设置按钮,如果单击它,动画将被取消(animation.cancel();).
我还为我的班级设置了一个AnimationListener.如果我的动画结束,我将开始一个新的活动(你去菜单).
public void onAnimationEnd(Animation animation) { startActivity(new Intent(Class.this, Class2.class)); }
我的应用程序依赖于用户必须在动画结束前单击按钮.
问题是animation.cancel();被承认为动画的结束.
如何以不计入动画结尾的其他方式取消动画?那可能吗?
提前致谢!
:
Cancelling an animation invokes the animation listener, if set, to notify the end of the animation. If you cancel an animation manually, you must call reset() before starting the animation again.
如果你想在cancel()和onAnimationEnd()上有不同的行为,我会建议一个布尔变量,可以在按钮点击时设置,并且onanimationend检查它是否为真.
翻译自:https://stackoverflow.com/questions/15189514/how-to-cancel-an-animation-but-not-to-end-it
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 封装 axios 取消重复请求
- Git 设置和取消代理
- C# 代码取消 TFS 管控
- swift,alamofire取消之前的请求
- c – 强制允许取消引用NULL指针
- 选择/取消选择所有按钮以选择闪亮变量
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Definitive Guide to HTML5 WebSocket
Vanessa Wang、Frank Salim、Peter Moskovits / Apress / 2013-3 / USD 26.30
The browser is, hands down, the most popular and ubiquitous deployment platform available to us today: virtually every computer, smartphone, tablet, and just about every other form factor imaginable c......一起来看看 《The Definitive Guide to HTML5 WebSocket》 这本书的介绍吧!