com.google.android.gms.common.GooglePlayServicesClient.ConnectionCallbacks |
Provides callbacks that are called when the client is
connected or disconnected from the service. Most applications
implement onConnected()
to
start making requests.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
After calling
connect() , this method will be
invoked asynchronously when the connect request has successfully
completed. | |||||||||||
Called when the client is disconnected.
|
After calling connect()
, this method will be
invoked asynchronously when the connect request has successfully
completed. After this callback, the application can make requests
on other methods provided by the client and expect that no user
intervention is required to call methods that use account and
scopes provided to the client constructor.
Called when the client is disconnected. This can happen if there
is a problem with the remote service (e.g. a crash or resource
problem causes it to be killed by the system). When called,
all requests have been canceled and no outstanding listeners will be
executed. Applications should disable UI components that require
the service, and wait for a call to onConnected()
to
re-enable them.