Android AsyncTask没有调用onPostExecute

时间:2013-08-19 01:58:12

标签: android android-asynctask

当我调用我的AsyncTask时,运行doInBackground但之后从不调用onPostExecute。 Eclipse并没有抱怨@Override或AsyncTask中的任何参数,所以我不确定是什么问题。谁能告诉我这是什么问题?

调用AsyncTask:

new AsyncDataFetcher(this).execute(productInfoUrls);

productInfoUrls是一个网址列表。

的AsyncTask:

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;
        }
    }
}

1 个答案:

答案 0 :(得分:2)

在异步任务结构中,一切看起来都合适,但您在doInBackground中所做的事情可能会永远存在!我怀疑你的应用程序正在启动doInBackground并且从未完成它。

我会添加一些调试日志,以了解json如何进展。

@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)));
        Log.d(TAG, "added " + i);
    }
    Log.d(TAG, "returning jsonList");
    return jsonList;
}