SimpleCursorAdapter 在 ContentProvider 中插入时不重新加载数据和视图

发布于 2024-11-17 14:11:28 字数 1301 浏览 4 评论 0原文

这段代码工作正常 - 我正在将一堆行加载到 SimpleCursorAdapter 中,并且 ListView 显示它们。好的。

SimpleCursorAdapter adapter;
Cursor cursor;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    ListView lv = (ListView)findViewById(R.id.main_lv_projects);
    lv.setOnItemClickListener(this);
    String[] columns = new String[] { CompassDataProvider.ORG_NAME };
    int[] names = new int[] { R.id.organisation_row_name};

    cursor = this.managedQuery(CompassDataProvider.CONTENT_URI_ORGANISATIONS, null, null, null, null);
    adapter = new SimpleCursorAdapter(this, R.layout.organisation_row, cursor, columns, names);
    lv.setAdapter(adapter);

    startManagingCursor(cursor);
}

但是,当我通过

long rowID = db.getWritableDatabase().insert(CompassDBHelper.ORGS_TABLE_NAME, "", values);
getContext().getContentResolver().notifyChange(CONTENT_URI_ORGANISATIONS, null);
return Uri.withAppendedPath(CONTENT_URI_ORGANISATIONS, ""+rowID);

列表视图插入新行时,它不会自行更新 - 我认为 SimpleCursorAdapter 会收到通知,然后可以重新加载其视图 - 不是吗?

新行已创建 -

当我在 UI 威胁中使用时,

cursor.requery();
adapter.notifyDataSetChanged();

我对此进行了检查,新数据已正确加载...我没有得到的观察者/侦听器模式是什么? :)

谢谢, 马丁

this code is working fine - i'm loading a bunch of rows into the SimpleCursorAdapter and the ListView displays them. nice.

SimpleCursorAdapter adapter;
Cursor cursor;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    ListView lv = (ListView)findViewById(R.id.main_lv_projects);
    lv.setOnItemClickListener(this);
    String[] columns = new String[] { CompassDataProvider.ORG_NAME };
    int[] names = new int[] { R.id.organisation_row_name};

    cursor = this.managedQuery(CompassDataProvider.CONTENT_URI_ORGANISATIONS, null, null, null, null);
    adapter = new SimpleCursorAdapter(this, R.layout.organisation_row, cursor, columns, names);
    lv.setAdapter(adapter);

    startManagingCursor(cursor);
}

But when i'm inserting a new row via

long rowID = db.getWritableDatabase().insert(CompassDBHelper.ORGS_TABLE_NAME, "", values);
getContext().getContentResolver().notifyChange(CONTENT_URI_ORGANISATIONS, null);
return Uri.withAppendedPath(CONTENT_URI_ORGANISATIONS, ""+rowID);

the list view is not updateing itself - i thought the SimpleCursorAdapter is notified an can then reload its view - not?

the new row is created - i checked on this

when i'm using

cursor.requery();
adapter.notifyDataSetChanged();

in my UI threat the new data gets loaded correctly... whats the observer/listener pattern here that i did not get? :)

thanks,
Martin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

懵少女 2024-11-24 14:11:28

光标通过值而不是引用传递到 SimpleCursorAdapter 中。因此,调用cursor.requery没有任何效果。为了让它按照你想要的方式工作,你真的需要实现一个 listAdapter 并在那里处理你的光标。

The cursor is being passed into the SimpleCursorAdapter by value and not reference. So, calling cursor.requery has no effect. To get this to work the way you want, you're really going to need to implement a listAdapter and process your cursor in there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文