gpt4 book ai didi

android - ContentResolver.notifyChange() 不起作用

转载 作者:太空狗 更新时间:2023-10-29 12:55:01 27 4
gpt4 key购买 nike

一些背景信息:

当我运行我的应用程序时,前台 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com