onTouch()、onClick() 是否在同一线程中顺序运行?
onTouch()
、onClick()
、runOnUiThread()
是否按顺序在同一个 UI 线程中运行?或者我是否需要担心它们之间的同步问题?
Are onTouch()
, onClick()
, runOnUiThread()
running in the same UI thread sequentially? Or do I have to worry about synchronization issues among them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。 99.9% 的情况下,Android 会在主应用程序线程上调用您的方法。例外情况是:
Yes. 99.9% of the time, Android will be calling into your methods on the main application thread. The exceptions are:
AsyncTask