Home | History | Annotate | Download | only in components

Lines Matching full:startservice

73 calling {@link android.content.Context#startService startService()}. Once started, a service
140 requests that the service be started, by calling {@link android.content.Context#startService
141 startService()}. Once this method executes, the service is started and can run in the
164 android.content.Context#startService startService()} (which results in a call to {@link
234 android.content.Context#startService startService()}.</p>
256 android.content.Context#startService startService()}, resulting in a call to the service's
266 android.content.Context#startService startService()} and passing an {@link android.content.Intent}
273 android.content.Context#startService startService()}. The service receives the intent in {@link
523 android.content.Context#startService startService()}. The Android system calls the service's {@link
529 HelloSevice}) using an explicit intent with {@link android.content.Context#startService
530 startService()}:</p>
534 startService(intent);
537 <p>The {@link android.content.Context#startService startService()} method returns immediately and
544 android.content.Context#startService startService()} is the only mode of communication between the
597 android.content.Context#startService startService()}).</p>
708 android.content.Context#startService startService()}. The service then runs indefinitely and must
724 started with {@link android.content.Context#startService startService()}. For example, a background
725 music service could be started by calling {@link android.content.Context#startService
726 startService()} with an {@link android.content.Intent} that identifies the music to play. Later,
752 // The service is starting, due to a call to {@link android.content.Context#startService startService()}
782 shows the lifecycle when the service is created with {@link android.content.Context#startService
783 startService()} and the diagram on the right shows the lifecycle when the service is created
800 they're created by {@link android.content.Context#startService startService()} or {@link
806 android.content.Intent} that was passed to either {@link android.content.Context#startService
807 startService()} or {@link android.content.Context#bindService bindService()}, respectively.
823 services that are created by {@link android.content.Context#startService startService()} from those
827 onStartCommand()} (by a client calling {@link android.content.Context#startService startService()})