The documentation of the ContentObserver is not clear to me. On which thread is the onChange of a ContentObserver called?
I checked and it is not the thread where yo
This old question seems to touch on your issue:
How to observe contentprovider change? android
Looks like you should create a new thread, running in its own Service, where the onChange method will be called.