I have a ContentProvider subclass doing all my database work, and a Service that is running in the background.
I can’t seem to be able to bind a Service to the ContentProvider. Can I call a method from the service within the ContentProvider at all, or is there a way to bind?
I binded the service in the onCreate() method
and then used the context to actually bind the service
I don’t unbind from the service, but it seems to work ok