Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在线程池中运行 AsyncTask?executeOnExecutor(exec, params)我不能使用的方法,因为它需要 API 级别 11。
executeOnExecutor(exec, params)
您不应在自定义线程池中运行 AsyncTask。AsyncTasks 已经通过 Android 由线程池管理。您可以通过调试您的应用程序并观察线程池在您创建 AsyncTask 时的增长来看到这一点。