sendEmptyMessageDelayed:Android
这个调用会阻塞吗?或者是在另一个线程中并且控制可以超越这个语句?
Does this call block? Or is it in another thread and control can go beyond this statement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不会阻塞。该消息被放入队列中。延迟结束后,处理程序将拾取该信息。
使用哪个线程来运行handleMessage 取决于您使用哪个Handler 将其发送到。
It doesn't block. The message is put into a queue. This is then picked up by the Handler after the delay has expired.
Which thread is used to run the handleMessage depends on which Handler you use to send it to.