Lines Matching refs:bound

46 <li><a href="{@docRoot}guide/components/bound-services.html">Bound Services</a></li>
71 <dd>A service is "bound" when an application component binds to it by calling {@link
72 android.content.Context#bindService bindService()}. A bound service offers a client-server
74 do so across processes with interprocess communication (IPC). A bound service runs only as long as
75 another application component is bound to it. Multiple components can bind to the service at once,
85 <p>Regardless of whether your application is started, bound, or both, any application component
164 only as long as the component is bound to it. Once the service is unbound from all clients, the
168 resources for the activity that has user focus. If the service is bound to an activity that has user
580 <p>A bound service is one that allows application components to bind to it by calling {@link
585 <p>You should create a bound service when you want to interact with the service from activities
589 <p>To create a bound service, you must implement the {@link
594 is bound to it, so when there are no components bound to the service, the system destroys it
595 (you do <em>not</em> need to stop a bound service in the way you must when the service is started
598 <p>To create a bound service, the first thing you must do is define the interface that specifies
607 there are no clients bound to the service, the system destroys the service.</p>
609 <p>There are multiple ways to implement a bound service and the implementation is more
610 complicated than a started service, so the bound service discussion appears in a separate
612 href="{@docRoot}guide/components/bound-services.html">Bound Services</a>.</p>
700 <li>A bound service
796 onStartCommand()} returns). If the service is bound, the active lifetime ends when {@link
804 service (there's no {@code onStop()} callback). So, unless the service is bound to a client,
818 href="{@docRoot}guide/components/bound-services.html">Bound Services</a> document,
821 href="{@docRoot}guide/components/bound-services.html#Lifecycle">Managing the Lifecycle of