对视图的外部描边进行动画处理(按钮)
我想根据计时器使按钮的行程闪烁/闪烁几次。例如,每 30 秒将笔画从白色变为黑色或类似的东西闪烁 3 次。这可以做到吗?谢谢
I'd like to flash/blink the stroke of a button a few times based on a timer. For example, every 30 seconds flash the stroke 3 times from white to black or some such thing. Can this be done? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建这样的自定义按钮布局,并将它们放在可绘制文件夹中
,其中颜色 grey3 是边框,您可以启动计时器并向您的类添加一个 TimerTask 类,然后使其每 30 秒运行一次任务,只需更改按钮背景从一个 .xml 更改为具有不同边框颜色的另一个 .xml。
you can create custom button layouts like such and put them in the drawable folder
where the color grey3 is the border and you can start a timer and add a TimerTask class to your class and then make it run the task every 30 seconds and just change the buttons background from one .xml to another with a different border color.