Home | History | Annotate | Download | only in content

Lines Matching refs:service

22  * Interface for monitoring the state of an application service.  See
23 * {@link android.app.Service} and
30 * Called when a connection to the Service has been established, with
32 * Service.
35 * client app to a service, it's possible that your app will never receive
37 * the service, such as the service crashing while being created.
39 * @param name The concrete component name of the service that has
42 * @param service The IBinder of the Service's communication channel,
45 void onServiceConnected(ComponentName name, IBinder service);
48 * Called when a connection to the Service has been lost. This typically
49 * happens when the process hosting the service has crashed or been killed.
51 * binding to the service will remain active, and you will receive a call
52 * to {@link #onServiceConnected} when the Service is next running.
54 * @param name The concrete component name of the service whose
63 * happen, for example, if the application hosting the service it is bound to
66 * @param name The concrete component name of the service whose
73 * Called when the service being bound has returned {@code null} from its
74 * {@link android.app.Service#onBind(Intent) onBind()} method. This indicates
75 * that the attempting service binding represented by this ServiceConnection
83 * @param name The concrete component name of the service whose binding
84 * has been rejected by the Service implementation.