AutoResolvableResult

  • AutoResolvableResult is an interface for Task results that may involve showing UI and can be resolved through ResolvableApiException or automatically through AutoResolveHelper.

  • Known indirect subclasses of AutoResolvableResult include AutoResolvableVoidResult and PaymentData.

  • The AutoResolvableResult interface has a public abstract method called putIntoIntent that saves the result as an extra into a given Intent.

public interface AutoResolvableResult
Known Indirect Subclasses

Marks Task results which may involve showing UI to be resolved through ResolvableApiException and that support automatic resolution through the use of AutoResolveHelper.

Public Method Summary

abstract void
putIntoIntent(Intent intent)
Saves the intent as an extra into the given Intent.

Public Methods

public abstract void putIntoIntent (Intent intent)

Saves the intent as an extra into the given Intent.

Generally speaking, any classes that implement this interface will also have a static method called getFromIntent(Intent) to do the opposite operation.