AccountAuthenticatorActivity

public class AccountAuthenticatorActivity
extends Activity

java.lang.Object
   ↳ android.content.Context
     ↳ android.content.ContextWrapper
       ↳ android.view.ContextThemeWrapper
         ↳ android.app.Activity
           ↳ android.accounts.AccountAuthenticatorActivity


This class was deprecated in API level 30.
Applications should extend Activity themselves. This class is not compatible with AppCompat, and the functionality it provides is not complex.

Base class for implementing an Activity that is used to help implement an AbstractAccountAuthenticator. If the AbstractAccountAuthenticator needs to use an activity to handle the request then it can have the activity extend AccountAuthenticatorActivity. The AbstractAccountAuthenticator passes in the response to the intent using the following:

      intent.putExtra(AccountManager#KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);
 
The activity then sets the result that is to be handed to the response via setAccountAuthenticatorResult(android.os.Bundle). This result will be sent as the result of the request when the activity finishes. If this is never set or if it is set to null then error AccountManager#ERROR_CODE_CANCELED will be called on the response.

Summary

Inherited constants

Inherited fields

Public constructors

AccountAuthenticatorActivity()

Public methods

void finish()

Sends the result or a Constants.ERROR_CODE_CANCELED error if a result isn't present.

final void setAccountAuthenticatorResult(Bundle result)

Set the result that is to be sent as the result of the request that caused this Activity to be launched.

Protected methods

void onCreate(Bundle icicle)

Retrieves the AccountAuthenticatorResponse from either the intent of the icicle, if the icicle is non-zero.

Inherited methods

Public constructors

AccountAuthenticatorActivity

public AccountAuthenticatorActivity ()

Public methods

finish

Added in API level 5
public void finish ()

Sends the result or a Constants.ERROR_CODE_CANCELED error if a result isn't present.

setAccountAuthenticatorResult

Added in API level 5
public final void setAccountAuthenticatorResult (Bundle result)

Set the result that is to be sent as the result of the request that caused this Activity to be launched. If result is null or this method is never called then the request will be canceled.

Parameters
result Bundle: this is returned as the result of the AbstractAccountAuthenticator request

Protected methods

onCreate

Added in API level 5
protected void onCreate (Bundle icicle)

Retrieves the AccountAuthenticatorResponse from either the intent of the icicle, if the icicle is non-zero.

Parameters
icicle Bundle: the save instance data of this Activity, may be null