我只是想doInBackground()
在AsyncTask
. 出于这个原因,我尝试在里面使用线程doInBackground()
protected String doInBackground(String... input) {
// TODO Auto-generated method stub
Thread timer = new Thread(){
public void run(){
try{
sleep(3000);
}catch(InterruptedException e)
{
e.printStackTrace();
}
}
};
timer.start();
return null;
}
我猜中的线程是作为单独执行的??因为onPostExecute()
在忽略我提出的延迟之后立即调用。
有人可以提出一些建议,以便我可以延迟拨打onPostExecute()
.