从其他线程发送到主线程
在Android服务中,经常需要后台线程与主线程交互,例如将可运行对象发布到其消息队列。要实现此目标,请考虑以下解决方案:
解决方案 1:使用 Context 对象
如果后台线程有权访问 Context 对象(例如,Application 或 Service) context),它可以使用以下方式获取主线程的 Handler:
Handler mainHandler = new Handler(context.getMainLooper());
随后,您可以发布a Runnable 到主线程如下:
mainHandler.post(myRunnable);
解决方案二:使用 Looper.getMainLooper()
如果后台线程没有 Context 对象,您仍然可以使用以下方式获取主线程的 Looper:
Handler mainHandler = new Handler(Looper.getMainLooper());
这允许您发布也可运行到主线程:
mainHandler.post(myRunnable);
以上是如何在 Android 中将 Runnables 从后台线程发布到主线程?的详细内容。更多信息请关注PHP中文网其他相关文章!