从AsyncTask更新ListView适配器

时间:2013-08-28 14:51:02

标签: android multithreading listview adapter

我所拥有的是AsyncTask, ListView,只要AsyncTask到达屏幕上的底部项目,就会ListView.将新项目添加到 @Override protected void onPostExecute(final List<ItemDailyRecord> records) { super.onPostExecute(records); ((ActivityHome)context).runOnUiThread(new Runnable() { public void run() { for (ItemDailyRecord p : records) { adapter.add(p); } adapter.notifyDataSetChanged(); } }); } @Override protected List<ItemDailyRecord> doInBackground(Void... voids) { DbAdapterDailyRecord db = new DbAdapterDailyRecord(context); List<ItemDailyRecord> list = db.getRecordsFromTo(offset, count); return list; }

以下是代码:

@Override
    public View getView(int position, View convertView, ViewGroup parent) {

        if(position == getCount() - 1 && hasMoreItems){
            HistoryLoaderTask t = new HistoryLoaderTask(position + 1, pageSize, getContext(),this);
            t.execute();
            footer.setText("Loading . . .");
        }

这是ListView适配器的方法:

{{1}}

错误信息是(如果我滚动列表视图太快了:)

  

引起:android.view.ViewRootImpl $ CalledFromWrongThreadException:   只有创建视图层次结构的原始线程才能触及它   视图。

任何想法如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

{0}方法在UI线程上执行,因此您应该直接在此方法中更新UI;无需生成新的onPostExecute()对象。

答案 1 :(得分:0)

您不应该从适配器的getView执行异步任务。相反,您应该尝试使用ListView的getLastVisiblePosition()从列表所在的活动/片段中执行此操作

喜欢这个---&gt;

if(list.getLastVisiblePosition() == (dataSet.size() - 1)) {
// last item displayed
.... change the text off footer and execute async task
}

并在异步任务中将额外数据附加到数据集,然后在适配器上调用notifyDataSetChanged()。