首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >不使用ContentProvider时的CursorLoader使用

不使用ContentProvider时的CursorLoader使用
EN

Stack Overflow用户
提问于 2011-08-25 05:26:28
回答 5查看 47K关注 0票数 107

Android SDK文档中说startManagingCursor()方法已经过时了:

此方法已弃用。将新的CursorLoader类与LoaderManager一起使用;在较旧的平台上,也可以通过Android兼容包使用这个类。此方法允许活动根据活动的生命周期为您管理给定游标的生命周期。也就是说,当活动停止时,它将在给定的游标上自动调用deactivate(),当稍后重新启动时,它将为您调用requery()。当活动被销毁时,所有托管游标都将自动关闭。如果您的目标是HONEYCOMB或更高版本,请考虑使用getLoaderManager()提供的LoaderManager。

所以我想使用CursorLoader。但是,当我需要在CursorLoader的构造函数中使用URI时,如何在没有ContentProvider的情况下与自定义CursorAdapter一起使用它

EN

回答 5

Stack Overflow用户

回答已采纳

发布于 2011-09-15 04:07:10

我编写了一个不需要内容提供商的simple CursorLoader

代码语言:javascript
复制
import android.content.Context;
import android.database.Cursor;
import android.support.v4.content.AsyncTaskLoader;

/**
 * Used to write apps that run on platforms prior to Android 3.0. When running
 * on Android 3.0 or above, this implementation is still used; it does not try
 * to switch to the framework's implementation. See the framework SDK
 * documentation for a class overview.
 *
 * This was based on the CursorLoader class
 */
public abstract class SimpleCursorLoader extends AsyncTaskLoader<Cursor> {
    private Cursor mCursor;

    public SimpleCursorLoader(Context context) {
        super(context);
    }

    /* Runs on a worker thread */
    @Override
    public abstract Cursor loadInBackground();

    /* Runs on the UI thread */
    @Override
    public void deliverResult(Cursor cursor) {
        if (isReset()) {
            // An async query came in while the loader is stopped
            if (cursor != null) {
                cursor.close();
            }
            return;
        }
        Cursor oldCursor = mCursor;
        mCursor = cursor;

        if (isStarted()) {
            super.deliverResult(cursor);
        }

        if (oldCursor != null && oldCursor != cursor && !oldCursor.isClosed()) {
            oldCursor.close();
        }
    }

    /**
     * Starts an asynchronous load of the contacts list data. When the result is ready the callbacks
     * will be called on the UI thread. If a previous load has been completed and is still valid
     * the result may be passed to the callbacks immediately.
     * <p/>
     * Must be called from the UI thread
     */
    @Override
    protected void onStartLoading() {
        if (mCursor != null) {
            deliverResult(mCursor);
        }
        if (takeContentChanged() || mCursor == null) {
            forceLoad();
        }
    }

    /**
     * Must be called from the UI thread
     */
    @Override
    protected void onStopLoading() {
        // Attempt to cancel the current load task if possible.
        cancelLoad();
    }

    @Override
    public void onCanceled(Cursor cursor) {
        if (cursor != null && !cursor.isClosed()) {
            cursor.close();
        }
    }

    @Override
    protected void onReset() {
        super.onReset();

        // Ensure the loader is stopped
        onStopLoading();

        if (mCursor != null && !mCursor.isClosed()) {
            mCursor.close();
        }
        mCursor = null;
    }
}

它只需要AsyncTaskLoader类。要么是Android 3.0或更高版本的版本,要么是兼容包附带的版本。

我还使用了wrote a ListLoader,它与LoadManager兼容,用于检索通用的java.util.List集合。

票数 155
EN

Stack Overflow用户

发布于 2011-08-25 10:54:07

编写您自己的加载器,使用您的数据库类而不是内容提供者。最简单的方法是从兼容性库中获取CursorLoader类的源代码,并将提供程序查询替换为对您自己的db helper类的查询。

票数 23
EN

Stack Overflow用户

发布于 2012-06-23 01:58:51

SimpleCursorLoader是一个简单的解决方案,但是它不支持在数据发生变化时更新加载器。CommonsWare有一个loaderex库,它添加了一个SQLiteCursorLoader,并支持对数据更改的重新查询。

https://github.com/commonsguy/cwac-loaderex

票数 14
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/7182485

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档