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

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

Susan Sarandon
發布: 2024-12-04 18:52:12
原創
668 人瀏覽過

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板