Android 11 中AsyncTask API 的替代品
Android AsyncTask API 在Android 11 中棄用,轉而使用java. concurrent 和Kotlin並發實用程式。此棄用要求較舊的程式碼庫採用替代的非同步任務實作。
AsyncTask 的一個潛在替代方案是使用java.util.concurrent 中的Executors:
ExecutorService executor = Executors.newSingleThreadExecutor(); Handler handler = new Handler(Looper.getMainLooper()); executor.execute(new Runnable() { @Override public void run() { // Background work here handler.post(new Runnable() { @Override public void run() { // UI Thread work here } }); } });
對於Java 8 及更高版本,以下內容簡潔版本是可能的:
ExecutorService executor = Executors.newSingleThreadExecutor(); Handler handler = new Handler(Looper.getMainLooper()); executor.execute(() -> { // Background work here handler.post(() -> { // UI Thread work here }); });
Kotlin並發實用程式提供了更簡潔的解決方案,但超出了本次討論的範圍。透過採用這些替代方案,開發人員可以繼續使用非同步任務,同時遵守 Android 11 及更高版本中 AsyncTask API 的棄用狀態。
以上是Android 11 及更高版本中 AsyncTask 的最佳替代方案是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!