任何人都知道在不调用super.onPreExecute()的情况下从AsyncTask中的onPreExecute返回会有什么影响;将调用doInBackground的剂量 我有一些条件,我不希望线程继续;
答案 0 :(得分:1)
不,它没有任何影响。您可以查看AsyncTask here
的代码如您所见,onPreExecute是:
/**
* Runs on the UI thread before {@link #doInBackground}.
*
* @see #onPostExecute
* @see #doInBackground
*/
protected void onPreExecute() {
}