从onPreExecute AsyncTask返回而不调用super

时间:2015-05-05 06:07:30

标签: android android-asynctask

任何人都知道在不调用super.onPreExecute()的情况下从AsyncTask中的onPreExecute返回会有什么影响;将调用doInBackground的剂量 我有一些条件,我不希望线程继续;

1 个答案:

答案 0 :(得分:1)

不,它没有任何影响。您可以查看AsyncTask here

的代码

如您所见,onPreExecute是:

   /**
     * Runs on the UI thread before {@link #doInBackground}.
     *
     * @see #onPostExecute
     * @see #doInBackground
     */
    protected void onPreExecute() {
    }