首頁 >Java >java教程 >如何在 Android 中將 Runnables 從後台執行緒發佈到主執行緒?

如何在 Android 中將 Runnables 從後台執行緒發佈到主執行緒?

Susan Sarandon
Susan Sarandon原創
2024-12-04 18:52:12669瀏覽

How to Post Runnables from Background Threads to the Main Thread in Android?

從其他執行緒發送到主執行緒

在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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn