public static interface

GoogleApiClient.OnConnectionFailedListener

implements GooglePlayServicesClient.OnConnectionFailedListener
com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener

Class Overview

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.

Summary

Public Methods
abstract void onConnectionFailed(ConnectionResult result)
Called when there was an error connecting the client to the service.
[Expand]
Inherited Methods
From interface com.google.android.gms.common.GooglePlayServicesClient.OnConnectionFailedListener

Public Methods

public abstract void onConnectionFailed (ConnectionResult result)

Called when there was an error connecting the client to the service.

Parameters
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).