标签: android-asynctask async-await android-volley delayed-execution
Am从asynctask的doInBackground()方法进行api调用。我希望asynctask仅在收到此api调用的响应后才执行onPostExecute()方法。这可能吗?
答案 0 :(得分:0)
AsyncTask的默认功能是onPostExecute()仅在完成doInBAckground()方法时才被调用。
onPostExecute()
doInBAckground()
如果这没有发生,请共享代码。