整理不同的处理程序android
所有,我想创建多个根据用户选择触发的处理程序,但此处理程序实现相同的可运行方法。唯一的区别是它们调用不同的 postDelayed() 方法。我如何在不为可运行程序重写相同代码的情况下实现这一目标?
我仍然不清楚handleMessages()是如何工作的以及它是否可以用于此目的?...谢谢
all, i want to create multiple handlers that gets triggered based on users selection, but this handlers implement the same runnable method. the only difference is that they call different postDelayed() method. how do i go about achieving this without rewriting the same code for the runnable?
i am still not clear about how the handleMessages() works and if it can be used for this?.. thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用处理程序并在其周围使用开关盒。通过向处理程序发送消息来更新视图
Use a handler and use a switch case around it. Update the view by sending a message to your handler