Android Contentobserver Never Stopped
I implemented a ContentObserver and it worked fine. But now everytime the ContentObserver is notified for some changes in the CallLog.Calls content provider, it runs the onChange()
Solution 1:
You change DB content inside of the fillList()
, so RatedCallsContentObserver.onChange()
is called again and again...
Post a Comment for "Android Contentobserver Never Stopped"