我有内容提供程序,内容解析程序和游标加载程序。加载器用于间接填充listview(即不是简单的游标适配器,而是数组适配器,因为我需要使用游标的结果来收集其他数据)。
当我更改基础数据时,listview不会重新填充,因为onLoadFinished(Loader<Cursor>, Cursor)
回调未被调用。
正如我写的那样,在这个问题上有很多问题。 例如 CursorLoader not updating after data change
所有问题都指出了两件事:
c.setNotificationUri(getContext().getContentResolver(), uri);
getContext().getContentResolver().notifyChange(uri, null);
我正在做那些事情。
我也没有关闭任何我回来的游标。
请注意,我的内容提供商位于一个单独的应用中(将其视为内容提供商应用 - 没有启动器主要活动)。 com.example.provider APK,com.example.app通过content://com.example.provider/table URI等调用(在内容解析器中)内容解析器(dbhelper)存在于库项目中(com.example.appdb)活动链接。(这样,多个项目可以通过链接使用dbhelper,所有内容提供者都通过单个APK安装)
我已经在装载程序管理器中启用了调试,并且可以看到在数据更改后强制刷新的位置(即重新启动加载程序并且之前被标记为非活动状态),但没有任何内容会自动发生 - 而是响应我的力量刷新。
为什么我的装载机没有被刷新的任何想法?
- 编辑 -
加载器创建:
Log.d(TAG, "onCreateLoader ID: " + loaderID);
// typically a switch on the loader ID, and then
return dbHelper.getfoo()
getfoo()通过以下方式返回游标加载器:
return new CursorLoader(context, FOO_URI, foo_Fields, foo_query, foo_argArray, foo_sort );
Loader Finish获取光标并填充表格(并进行一些处理) - 没有什么花哨的。
public void onLoadFinished(Loader<Cursor> loader, Cursor cursor) {
Log.d(TAG, "onLoadFinished id: " + loader.getId());
// switch on loader ID ..
FillTable(cursor, (FooAdapter) foo_info.listview.getAdapter();
Loader Reset清除表格。
public void onLoaderReset(Loader<Cursor> loader) {
Log.d(TAG, "onLoaderReset id: " + loader.getId());
// normally a switch on loader ID
((FooAdapter)foo_info.listview.getAdapter()).clear();
内容提供商:
public Cursor query(Uri uri,String [] projection,String selection,String [] selectionArgs,String sortOrder){ 光标光标; SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
SQLiteDatabase db = dbHelper.getReadableDatabase();
switch (sUriMatcher.match(uri)) {
case FOO:
qb.setTables(FOO);
qb.setProjectionMap(FooProjectionMap);
break;
default:
throw new IllegalArgumentException("Unknown URI " + uri);
}
Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, sortOrder);
c.setNotificationUri(getContext().getContentResolver(), uri);
return c;
}
然后插入/更新类似:
public Uri insert(Uri uri, ContentValues initialValues) {
ContentValues values;
if (initialValues != null) {
values = new ContentValues(initialValues);
} else {
values = new ContentValues();
}
String tableName;
Uri contentUri;
switch (sUriMatcher.match(uri)) {
case FOO:
tableName = FOOTABLE;
contentUri = FOO_URI;
break;
default:
throw new IllegalArgumentException("Unknown URI " + uri);
}
SQLiteDatabase db = dbHelper.getWritableDatabase();
long rowId = db.insert(tableName, null, values);
if (rowId > 0) {
Uri objUri = ContentUris.withAppendedId(contentUri, rowId);
getContext().getContentResolver().notifyChange(objUri, null);
return objUri;
}
throw new SQLException("Failed to insert row into " + uri);
}
答案 0 :(得分:2)
我发现你没有在onLoadFinished和onLoaderReset中调用swapCursor或changeCursor。您需要为适配器执行此操作以访问加载到新游标中的数据。
在onLoadFinished中,调用类似:
mAdapter.swapCursor(cursor)
在onLoaderReset中,调用它来删除对旧游标的引用:
mAdapter.swapCursor(null)
其中mAdapter是listView的适配器。
更多信息:http://developer.android.com/guide/components/loaders.html#onLoadFinished
答案 1 :(得分:2)
所以,对于任何看过这个并且有这个问题的人来说:
确保您注册光标的URI,以及通知光标的URI是相同的。
就我而言,我使用的是不同的URI来查询,而不是修改基础表的其他代码。没有一个简单的方法可以使通知工作,所以我一直在OnResume()中重置加载器作为解决方案。
答案 2 :(得分:1)
这不是这个具体问题的直接答案,但可能会帮助处于类似情况的其他人。就我而言,我有一个连接,即使我在投影和查询中使用了完整的tablename.columnname。无论如何,它最终使用了错误的ID值。因此,请务必检查ContentProvider或SQL语法。