從其他執行緒發送到主執行緒
在Android服務中,經常需要後台執行緒與主執行緒交互,例如將可運行物件發佈到其訊息隊列。要實現此目標,請考慮以下解決方案:
解決方案1:使用Context 物件
如果後台執行緒有權存取Context 物件(例如,Application 或Service ) context),它可以使用以下方式取得主線程的Handler:
Handler mainHandler = new Handler(context.getMainLooper());
隨後,您可以發布a Runnable 到主線程如下:
mainHandler.post(myRunnable);
解決方案二:使用Looper.getMainLooper()
解決方案二:使用Looper.getMainLooper()解決方案二:使用Looper.getMainLooper()Handler mainHandler = new Handler(Looper.getMainLooper());如果後台執行緒沒有Context 對象,您仍然可以使用以下方式取得主執行緒的Looper:
mainHandler.post(myRunnable);這允許您發布也可運行到主執行緒:
以上是如何在 Android 中將 Runnables 從後台執行緒發佈到主執行緒?的詳細內容。更多資訊請關注PHP中文網其他相關文章!