GoogleApiClient.OnConnectionFailedListener

public interface GoogleApiClient.OnConnectionFailedListener


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

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

Public methods

onConnectionFailed

abstract void onConnectionFailed(@NonNull ConnectionResult result)

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

Parameters
@NonNull ConnectionResult 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. Applications should implement onActivityResult in their Activity to call connect again if the user has resolved the issue (resultCode is RESULT_OK).