Lines Matching refs:startService
65 calling {@link android.content.Context#startService startService()}. Once started, a service
132 requests that the service be started, by calling {@link android.content.Context#startService
133 startService()}. Once this method executes, the service is started and can run in the
156 android.content.Context#startService startService()} (which results in a call to {@link
242 android.content.Context#startService startService()}, resulting in a call to the service's
252 android.content.Context#startService startService()} and passing an {@link android.content.Intent}
259 android.content.Context#startService startService()}. The service receives the intent in {@link
509 android.content.Context#startService startService()}. The Android system calls the service's {@link
515 HelloSevice}) using an explicit intent with {@link android.content.Context#startService
516 startService()}:</p>
520 startService(intent);
523 <p>The {@link android.content.Context#startService startService()} method returns immediately and
530 android.content.Context#startService startService()} is the only mode of communication between the
583 android.content.Context#startService startService()}).</p>
694 android.content.Context#startService startService()}. The service then runs indefinitely and must
710 started with {@link android.content.Context#startService startService()}. For example, a background
711 music service could be started by calling {@link android.content.Context#startService
712 startService()} with an {@link android.content.Intent} that identifies the music to play. Later,
738 …e service is starting, due to a call to {@link android.content.Context#startService startService()}
768 shows the lifecycle when the service is created with {@link android.content.Context#startService
769 startService()} and the diagram on the right shows the lifecycle when the service is created
786 they're created by {@link android.content.Context#startService startService()} or {@link
792 android.content.Intent} that was passed to either {@link android.content.Context#startService
793 startService()} or {@link android.content.Context#bindService bindService()}, respectively.
809 services that are created by {@link android.content.Context#startService startService()} from those
813 onStartCommand()} (by a client calling {@link android.content.Context#startService startService()})