除非我在loadInBackground中返回一个新对象,否则AsyncTaskLoader不会调用onLoadFinished

时间:2013-09-24 13:06:18

标签: android android-loadermanager android-loader asynctaskloader

我有AsyncTaskLoader<List<String>>个成员变量List<String> mAddresses。在loadInBackground中,如果我创建一个新对象,请填充它并返回它; onLoadFinished按预期调用,因此我可以更新适配器,而适配器又会更新视图。

    public List<String> loadInBackground()
    {
        // ListView updates properly only if I do this (strange?)
        mAddresses = new ArrayList<String>();

        // ... fill mAddresses ...

        return mAddresses;
    }

但是,如果我尝试使用相同的变量,即使它的值变化onLoadFinished也会被调用:

    public List<String> loadInBackground()
    {
        // ListView does not update with this!
        if(mAddresses == null)
        {
           mAddresses = new ArrayList<String>();
        }

        // ... fill mAddresses ...

        return mAddresses;
    }

有人可以对此发表评论吗?我是否应该像这样创建一个新对象来返回?是否有任何我可以设置的标记“对象已更改,因此即使它是同一个对象,请确保执行所有更新?

2 个答案:

答案 0 :(得分:6)

如果数据已经加载(就像在加载程序中的'mAddresses'变量中那样),则需要调用forceLoad()以使其再次加载:

http://developer.android.com/reference/android/content/Loader.html#forceLoad%28%29


  

修改 ......经过一番调查...... 要回答你原来的问题,无益于:'因为它没有'!

来自LoaderManager的来源:

        // Notify of the new data so the app can switch out the old data before
        // we try to destroy it.
        if (mData != data || !mHaveData) {
            mData = data;
            mHaveData = true;
            if (mStarted) {
                callOnLoadFinished(loader, data);
            }
        }

http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.3_r2.1/android/app/LoaderManager.java#LoaderManagerImpl.LoaderInfo.onLoadComplete%28android.content.Loader%2Cjava.lang.Object%29

重新解决你的问题,我假设你不断在loadInBackground()中添加List而不是清除并重新启动。 最干净的方法是每次通过将现有List作为参数传递给ArrayList()构造函数来构建一个新的ArrayList,它将复制内容。
或者您可以覆盖deliverResult(),它从主线程调用,因此修改mAdapter是正常的 或者忘记Loader并使用更简单的AsyncTask ...虽然这取决于您的数据实际来自哪里。

答案 1 :(得分:1)

尝试覆盖onStartLoading并调用forceLoad()

@Override
protected void onStartLoading() {
    super.onStartLoading();
    forceLoad();
}

@Override
protected void onStopLoading() {
    super.onStopLoading();
    cancelLoad();
}