java.lang.Object | |
↳ | android.support.customtabs.CustomTabsServiceConnection |
Abstract ServiceConnection
to use while binding to a CustomTabsService
. Any
client implementing this is responsible for handling changes related with the lifetime of the
connection like rebinding on disconnect.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Called when a connection to the
CustomTabsService has been established.
| |||||||||||
Called when a connection to the Service has been established, with
the
IBinder of the communication channel to the
Service.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.content.ServiceConnection
|
Called when a connection to the CustomTabsService
has been established.
name | The concrete component name of the service that has been connected. |
---|---|
client | CustomTabsClient that contains the IBinder with which the
connection have been established. All further communication should be initiated
using this client.
|
Called when a connection to the Service has been established, with
the IBinder
of the communication channel to the
Service.
name | The concrete component name of the service that has been connected. |
---|---|
service | The IBinder of the Service's communication channel, which you can now make calls on. |