I am writing a service for my Android app and I am trying to understand how the binding mechanism works. If I bind my service in the onCreate of an activity but I don\'t unbind
The services are still running even after the activity gets closed. So you need to unbind the resource in onStop or onDestroy.