Currently, I'm binding
to a service in the onCreate()
method of an Activity
and unbinding
in the onDestroy()
method of the Activity
.
I've more than one activity binding to the same service.
Am I using the correct lifecycle methods to bind and unbind?
Thanks.