Multiple choice onStartCommand() method of service gets called when service is started through activity service binds with any component Both (1) and (2) None of these Reveal answer Fill a bubble to check yourself A Correct answer Explanation onStartCommand() is called when a service is explicitly started using startService(). Binding with bindService() triggers onBind() instead. The two initiation methods have different lifecycle callbacks.