Provides callbacks for scenarios that result in a failed attempt to connect the client to
the service. See ConnectionResult
for a list of error codes and suggestions for resolution.
| abstract void |
onConnectionFailed(ConnectionResult
result)
Called when there was an error connecting the client to the service.
|
Called when there was an error connecting the client to the service.
| result | A ConnectionResult
that can be used for resolving the error, and deciding what sort of error occurred.
To resolve the error, the resolution must be started from an activity with a
non-negative requestCode passed to
startResolutionForResult(Activity, int). Applications should implement
onActivityResult in their Activity to call
connect() again if the user has resolved the issue (resultCode is
RESULT_OK). |
|---|