如何让我的SimpleCursorAdapter自动刷新?

时间:2012-10-18 09:01:13

标签: android simplecursoradapter android-adapter

我正在使用SimpleCursorAdapter来填充我的列表:

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中的某些内容发生变化时,我想自动重新编辑列表内容。

如何实现这个?

1 个答案:

答案 0 :(得分:1)

您可以使用managedQuery()和reQuery()方法。但是这些方法已经被贬低了。 因为你有另一种方法来管理,光标和列表视图,通过CursorLoader api,请看以下链接:

http://developer.android.com/reference/android/content/CursorLoader.html