Android -在AsyncTask中运行异步任务



AsyncTask中运行的方法中调用异步任务的正确方法是什么?

文档说明AsyncTaskexecute()方法必须在UI线程上运行,所以我不能在AsyncTask中运行另一个AsyncTask

这些都可以:*从onPostExecute(), onPreExecute()运行在UI线程。*用以下代码从doInBackground()运行

runOnUiThread {
@Override
  public void run() {
  // ... your code here.
}

相关内容

  • 没有找到相关文章

最新更新