I need to know, there is any alert function for SimpleCursorAdapter
when value is added? What I want is
- I open
MainActivity
, there isListView
integrated withSimpleCursorAdapter
added data by background services. - When value is added by background services, I want to refresh
ListView
and want to know how many new value is added. (don't want to use notification).
Just like AddAll()
and notifyDataSetChanged()
of ArrayAdapter
.
It can be possible?