0

我有一个自定义 ListAdapter,它在 AsyncTask 中从 Internet 获取数据。

数据完美地添加到列表中,但是当我尝试执行操作时,应用程序崩溃了......

我确定这是因为我正在调用 notifyDataSetChanged(); 在错误的时间(即在 AsyncTask 结束之前)。

我现在拥有的:

public class MyListAdapter extends BaseAdapter {
    private ArrayList<String> mStrings = new ArrayList<String>();

    public MyListAdapter() {
        new RetreiveStringsTask().execute(internet_url);
        //here I call the notify function ****************
        this.notifyDataSetChanged();
    }

    class RetreiveStringsTask extends AsyncTask<String, Void, ArrayList<String>> {
        private Exception exception;

        @Override
        protected ArrayList<String> doInBackground(String... urls) {
            try {
                URL url= new URL(urls[0]);
                //return arraylist
                return getStringsFromInternet(url);;
            } catch (Exception e) {
                this.exception = e;
                Log.e("AsyncTask", exception.toString());
                return null;
            }
        }

        @Override
        protected void onPostExecute(ArrayList<String> stringsArray) {
            //add the tours from internet to the array
            if(stringsArray != null) {
                mStrings.addAll(toursArray);
            }
        }
    }
}

我的问题是:我可以从 AsyncTask 中的 onPostExecute 函数调用 notifyDataSetChanged() 还是在 AsyncTask 获取数据的任何其他时间调用?

4

3 回答 3

5

我可以从 AsyncTask 中的 onPostExecute 函数调用 notifyDataSetChanged()

是的,您可以在执行完成时调用notifyDataSetChanged()fromonPostExecute来更新适配器数据。doInBackground这样做:

@Override
protected void onPostExecute(ArrayList<String> stringsArray) {
    //add the tours from internet to the array
    if(stringsArray != null) {
        mStrings.addAll(toursArray);
        // call notifyDataSetChanged() here...
         MyListAdapter.this.notifyDataSetChanged();
    }
}
于 2013-05-08T12:58:15.287 回答
2

notifyDataSetChanged()_ onPostExecute()_

@Override
        protected void onPostExecute(ArrayList<String> stringsArray) {
            //add the tours from internet to the array
            if(stringsArray != null) {
                mStrings.addAll(toursArray);
MyListAdapter.this.notifyDataSetChanged();
            }
        }
于 2013-05-08T12:58:03.503 回答
1

您是否尝试过onPostExecuteASyncTask. 和onPreExecuteononPostExecute用于更新 UI。

于 2013-05-08T12:59:06.117 回答