In my current Android Project, I am starting a Service via startService(), then afterwards I am binding to the Service with bindService(). (I do this because I want to have a started Service I am able to communicate with, nevermind)
After the Context is bound to the Service, usually onServiceConnected() of my ServiceConnection (wich I created earlier) is called if i understood this right.
Can I assume, that onServiceConnected() is only called after all of my code in the onCreate of my Service is executed?