Added in API level 1

ServiceConnection

interface ServiceConnection
android.content.ServiceConnection

Interface for monitoring the state of an application service. See android.app.Service and android.content.Context#bindService for more information.

Like many callbacks from the system, the methods on this class are called from the main thread of your process.

Summary

Public methods
open Unit

Called when the binding to this connection is dead.

open Unit

Called when the service being bound has returned null from its onBind() method.

abstract Unit

Called when a connection to the Service has been established, with the android.os.IBinder of the communication channel to the Service.

abstract Unit

Called when a connection to the Service has been lost.

Public methods

onBindingDied

Added in API level 26
open fun onBindingDied(name: ComponentName!): Unit

Called when the binding to this connection is dead. This means the interface will never receive another connection. The application will need to unbind and rebind the connection to activate it again. This may happen, for example, if the application hosting the service it is bound to has been updated.

Note: The app that requested the binding must call Context#unbindService(ServiceConnection) to release the tracking resources associated with this ServiceConnection even if this callback was invoked following android.content.Context#bindService.

Parameters
name ComponentName!: The concrete component name of the service whose connection is dead.

onNullBinding

Added in API level 28
open fun onNullBinding(name: ComponentName!): Unit

Called when the service being bound has returned null from its onBind() method. This indicates that the attempted service binding represented by this ServiceConnection will never become usable.

Note: The app that requested the binding must still call Context#unbindService(ServiceConnection) to release the tracking resources associated with this ServiceConnection even if this callback was invoked following android.content.Context#bindService.

Parameters
name ComponentName!: The concrete component name of the service whose binding has been rejected by the Service implementation.

onServiceConnected

Added in API level 1
abstract fun onServiceConnected(
    name: ComponentName!,
    service: IBinder!
): Unit

Called when a connection to the Service has been established, with the android.os.IBinder of the communication channel to the Service.

Note: If the system has started to bind your client app to a service, it's possible that your app will never receive this callback. Your app won't receive a callback if there's an issue with the service, such as the service crashing while being created.

Parameters
name ComponentName!: The concrete component name of the service that has been connected.
service IBinder!: The IBinder of the Service's communication channel, which you can now make calls on.

onServiceDisconnected

Added in API level 1
abstract fun onServiceDisconnected(name: ComponentName!): Unit

Called when a connection to the Service has been lost. This typically happens when the process hosting the service has crashed or been killed. This does not remove the ServiceConnection itself -- this binding to the service will remain active, and you will receive a call to onServiceConnected when the Service is next running.

Parameters
name ComponentName!: The concrete component name of the service whose connection has been lost.