In my current Android project, I start the service through startService() , after which I bind to the Service using bindService() . (I do this because I want to have a started Service with which I can communicate, no matter)
After the context is tied to the Service, usually the onServiceConnected() my ServiceConnection (which I created earlier) is called if I understood it correctly.
Is it possible to assume that onServiceConnected() is called only after all my code in onCreate my Service is executed?
source share