我正在使用 aSimpleCursorAdapter
来填写我的列表,如下所示:
adapter = new SimpleCursorAdapter(this, R.layout.fang_listlayout,
MainController.getInstance().getCursor(),
new String[] {"Foo", "Foo2"},
new int[] {R.id.foo1, R.id.foo2}, 0);
现在我想实现,当发生Cursor
更改时,我想自动刷新列表内容。
如何实施?