在Android 服務中,為後台任務建立執行緒時,可能需要發佈某些任務,與Runnables 一樣,來自另一個執行緒的主執行緒訊息佇列上。
為了實現這一點,Android 提供了兩個解決方案:
如果後台執行緒有Context 物件的引用,則可以像這樣存取主線程的Handler:
// Get a handler that can be used to post to the main thread Handler mainHandler = new Handler(context.getMainLooper()); Runnable myRunnable = new Runnable() { @Override public void run() {....} // This is your code }; mainHandler.post(myRunnable);
如果後台執行緒沒有Context對象,可以直接存取主執行緒的Looper 並建立Handler:
// Get a handler that can be used to post to the main thread Handler mainHandler = new Handler(Looper.getMainLooper()); Runnable myRunnable = new Runnable() { @Override public void run() {....} // This is your code }; mainHandler.post(myRunnable);
使用這兩種方法中的任何一種,您都可以將任務發佈到主執行緒的訊息佇列並確保它們在主執行緒中執行,從而允許您更新UI組件或執行其他操作需要存取應用程式主要資源的操作。
以上是如何將任務從另一個執行緒發佈到Android主執行緒?的詳細內容。更多資訊請關注PHP中文網其他相關文章!