android - 如何使按钮闪烁?
有没有什么方法,在代码中,使按钮持续闪烁,然后在按下时停止闪烁?
Is there any way, in code, to make a button flash continually and then stop flashing when pressed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有几种,具体取决于您所指的闪烁类型。
例如,您可以使用 alpha 动画并在按钮第一次出现时启动它。当用户单击按钮时,在
OnClickListener
中只需执行clearAnimation()
即可。例子:
There are several, depending on what kind of flashing you mean.
You can, for example, use alpha animation and start it as your button first appears. And when the user clicks button, in your
OnClickListener
just doclearAnimation()
.Example:
您可以使用此代码,也可以通过mAnimation.setDuration(200);来决定按钮的闪烁时间。代码如下。
You can use this code and as well as you can also decide the blink timing of button via mAnimation.setDuration(200);.The code is as follows.