标签: android android-asynctask development-environment execute
//AsyncTask calling phase from OnCreate method AsyncTask asyncTask = new AsynTask(); asyncTask.execute(); //doesn't work!!!!// new AsyncTask().execute(); //works fine!!!//
在调用第一种方法时它显示错误,但是一旦我将其更改为另一种方法,它就可以正常工作。...为什么?