我需要知道,SimpleCursorAdapter
添加值时是否有任何警报功能?我想要的是
- 我打开
MainActivity
,后台服务ListView
集成了SimpleCursorAdapter
添加的数据。 - 当后台服务添加值时,我想刷新
ListView
并想知道添加了多少新值。(不想使用通知)。
就像AddAll()
和notifyDataSetChanged()
一样ArrayAdapter
。
有可能吗?
我需要知道,SimpleCursorAdapter
添加值时是否有任何警报功能?我想要的是
MainActivity
,后台服务ListView
集成了
SimpleCursorAdapter
添加的数据。ListView
并想知道添加了多少新值。(不想使用通知)。就像AddAll()
和notifyDataSetChanged()
一样ArrayAdapter
。
有可能吗?
最好的方法是在数据库上设置内容观察器并使用CursorLoader异步加载数据。
在添加新记录时请求新游标
引用:
requery()
This method was deprecated in API level 11. Don't use this. Just request a new cursor, so you can do this asynchronously and update your list view once the new cursor comes back.