|- AsyncTask内的各个方法调用顺序:|- 首先,用户调用execute方法,启动AsyncTask .然后在execute方法中:|- 首先调用onPreExecute方法,执行初始化操作.|- 然后从线程池中取出若干个空闲的线程,并使用该线程调用doInBackground方法,执行耗时的操作,如文件下载等.|- 提示:调用execute方法时设置的参数会被直接传递给doInBackground方法.|- 当doInBackground方法执行完毕后,onPostExecute方法将…