有人能告訴我這裏出了什麼問題嗎?AsyncTask <String,Void,Void>如何工作?
public class BackgroungTask extends AsyncTask<String, Void, Void> {
public Void doInBackground(String... params) {
//tasks
return; //error occurs here!
}
public void onPostExecute(Void result) {
//codes
}
}
上面的類不依賴於返回值。所以onPostExceute()只需執行那裏寫的代碼。
在此先感謝!
'Void'和'void'都不同,請參閱http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.0_r1/android/ os/AsyncTask.java –
請參考本站,1. [Asynchronous Task_tutorial](http://androidresearch.wordpress.com/2012/03/17/understanding-asynctask-once-and-forever/)2. [異步任務說明](http://labs.makemachine.net/2010/05/android-asynctask-example/) – Aerrow