在多執行緒環境中將執行傳遞給主執行緒
在多執行緒程式設計中,特別是在Android 服務中,可能會出現後台執行緒需要執行的情況與主執行緒互動。一個常見的需求是將任務(例如 Runnables)發佈到主執行緒的訊息佇列上。
帶有上下文引用的解決方案
如果後台執行緒可以訪問Context對象,可以利用應用程式或服務上下文來取得主對象的處理程序thread:
Handler mainHandler = new Handler(context.getMainLooper()); Runnable myRunnable = new Runnable() { @Override public void run() { // Code to execute on the main thread } }; mainHandler.post(myRunnable);
沒有上下文引用的解決方案
如果後台執行緒沒有上下文引用,可以使用@dzeikei建議的替代方法:
Handler mainHandler = new Handler(Looper.getMainLooper()); Runnable myRunnable = new Runnable() { @Override public void run() { // Code to execute on the main thread } }; mainHandler.post(myRunnable);
以上是如何在 Android 中將執行傳遞給主執行緒:有上下文還是沒有上下文?的詳細內容。更多資訊請關注PHP中文網其他相關文章!