android - ContentResolver.notifyChange() 不起作用

标签 android notifications android-contentprovider simplecursoradapter

一些背景信息:

当我运行我的应用程序时,前台 Activity 显示来自本地 SQLite 数据库的缓存信息,同时后台服务连接到服务器并获取一些新信息。检索数据时,该服务会启动我的 ContentProvider 的插入方法,以更新我的本地 SQLite 数据库。插入完成后,我通知我的 ContentObserver(前台 Activity )有关刷新 View 的更改。

我知道插入工作正常,因为当我手动重新运行应用程序时,我可以在屏幕上看到新数据。不幸的是,自动刷新不起作用。调用方法 ContentObserver.notifyChange() 失败。最奇怪的是它甚至没有在 catch (Exception e) 行上停止。它直接在 try/catch block 之外。我不知道是怎么回事。 LogCat , 控制台很安静。

这是我的 ContentProvider 中 insert 方法的代码部分,负责插入和更改通知。

SQLiteDatabase sqlDB = db.getWritableDatabase();
try {
    long newID = sqlDB.insertOrThrow(StatsCollectorDatabase.TABLE_USERS, null, values);
    if (newID > 0) {
        Uri newUri = ContentUris.withAppendedId(uri, newID);
        ContentResolver contentResolver = getContext().getContentResolver();
        contentResolver.notifyChange(uri, null); // This is the line that fails
        return newUri;
    } else {
        throw new SQLException("Failed to insert row into " + uri);
    }
} catch (SQLiteConstraintException e) {
    Log.i(DEBUG_TAG, "Ignoring constraint failure.");
} catch (Exception e) {
    Log.i(DEBUG_TAG, e.getLocalizedMessage());
}

这是来自前台 Activity 中的 onCreate 方法的代码:

Cursor cursor = this.managedQuery(StatsCollectorProvider.CONTENT_URI, null, null, null, null);
String[] columns = new String[] { StatsCollectorDatabase._USER_NAME, StatsCollectorDatabase._USER_DEVICE_ID };
int[] views = new int[] { R.id.name_entry, R.id.number_entry };

SimpleCursorAdapter adapter = new SimpleCursorAdapter(this.getApplicationContext(), R.layout.list_item, cursor, columns, views, CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
this.setListAdapter(adapter);

Intent intent = new Intent(this.getApplicationContext(), UsersDownloaderService.class);
this.startService(intent);    

我尝试使用谷歌搜索,但没有发现任何相关内容。我该如何解决这个问题?

如果有必要,我可以提供更多代码。

最佳答案

我解决了。我的 Activity 没有继承 FragmentActivity 并且我的布局不包含任何 fragment ,所以它无法工作 - 没有任何已注册的 ContentObservers。

现在看起来像这样:

首先主要 Activity 启动,注册 fragment 布局并在其 onCreate 中启动后台服务。方法:

super.onCreate(savedInstanceState);
setContentView(R.layout.list);

Intent intent = new Intent(this.getApplicationContext(), UsersDownloaderService.class);
this.startService(intent);  

这是我的 list布局:

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    class="org.moyshe.cursors.ListViewFragment"
    android:name="org.moyshe.cursors.ListViewFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
</fragment>

ListViewFragment延伸ListFragment并实现 LoaderCallbacks<Cursor> .这是我丢失的 ContentObserver。如果有人对它的外观感兴趣,请阅读此 article - 它对我帮助很大。

我的 Service 和 ContentProvider 类没有改​​变。

关于android - ContentResolver.notifyChange() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7704665/

相关文章:

android - 将触摸屏事件发送到前台 Activity (仅来自 APK)

android - 如何在清除通知时重置通知管理器号码

android - 何时使用内容提供者

android - LoaderManager.onLoadFinished 即使在特定查询与更新不匹配时也会被调用

android - 从另一个 View 滚动一个 View

android - OpenCV 安卓 : Get camera frames in background without showing on the screen

Android:手机忽略正确的振动代码

rspec - 如何关闭新输出的 iTerm2 growl 通知,但保留它们用于 rspec 结果

android - 在整个应用程序中全局广播和接收连接更改的最佳做法是什么?

Android - 具有适配器支持数据的向导类型 Activity