当我调用我的 AsyncTask 时,doInBackground 会运行,但之后永远不会调用 onPostExecute。Eclipse 没有抱怨@Override
s 或 AsyncTask 中的任何参数,所以我不确定问题是什么。谁能告诉我问题是什么?
调用异步任务:
new AsyncDataFetcher(this).execute(productInfoUrls);
productInfoUrls
是一个 url 列表。
异步任务:
private static class AsyncDataFetcher extends AsyncTask<List<String>, Void, List<JSONObject>> {
Context context;
public AsyncDataFetcher(Context context) {
this.context = context;
}
@Override
protected List<JSONObject> doInBackground(List<String>... urls) {
List<JSONObject> jsonList = new ArrayList<JSONObject>();
JSONParser json_parse = new JSONParser();
for (int i = 0; i < urls[0].size(); i ++) {
jsonList.add(json_parse.getJSONFromUrl(urls[0].get(i)));
}
return jsonList;
}
@Override
protected void onPostExecute(List<JSONObject> jsonList) {
if(jsonList != null){
productInfoParser.Parse(jsonList);
loaded = true;
}
}
}