CustomTabsServiceConnection
public
abstract
class
CustomTabsServiceConnection
extends Object
implements
ServiceConnection
java.lang.Object
|
↳ |
androidx.browser.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.
Summary
Inherited methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
|
Public constructors
CustomTabsServiceConnection
public CustomTabsServiceConnection ()
Public methods
onCustomTabsServiceConnected
public abstract void onCustomTabsServiceConnected (ComponentName name,
CustomTabsClient client)
Called when a connection to the CustomTabsService
has been established.
Parameters |
name |
ComponentName : The concrete component name of the service that has been connected. |
client |
CustomTabsClient : CustomTabsClient that contains the IBinder with which the
connection have been established. All further communication should be initiated
using this client.
|
onServiceConnected
public final void onServiceConnected (ComponentName name,
IBinder service)
Parameters |
name |
ComponentName |
service |
IBinder |