onTouch()、onClick() 是否在同一线程中顺序运行?

发布于 2024-09-09 19:35:11 字数 120 浏览 9 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巷雨优美回忆 2024-09-16 19:35:11

分别是onTouch()、onClick()、
runOnUiThread() 在同一 UI 中运行
按顺序线程?

是的。 99.9% 的情况下,Android 会在主应用程序线程上调用您的方法。例外情况是:

  • 您明确告诉它通过 AsyncTask 使用后台线程
  • 如果您通过 AIDL 向第三方应用程序公开接口,则

Are onTouch(), onClick(),
runOnUiThread() running in the same UI
thread sequentially?

Yes. 99.9% of the time, Android will be calling into your methods on the main application thread. The exceptions are:

  • where you are expressly telling it to use a background thread via AsyncTask
  • if you expose an interface via AIDL to third-party apps
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文