Most visited

Recently visited

Added in API level 5

AccountAuthenticatorActivity

public class AccountAuthenticatorActivity
extends Activity

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


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(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 ERROR_CODE_CANCELED will be called on the response.

Summary

Inherited constants

From class android.app.Activity
From class android.content.Context
From interface android.content.ComponentCallbacks2

Inherited fields

From class android.app.Activity

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)

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

Inherited methods

From class android.app.Activity
From class android.view.ContextThemeWrapper
From class android.content.ContextWrapper
From class android.content.Context
From class java.lang.Object
From interface android.view.LayoutInflater.Factory2
From interface android.view.Window.Callback
From interface android.view.KeyEvent.Callback
From interface android.view.View.OnCreateContextMenuListener
From interface android.content.ComponentCallbacks2
From interface android.view.LayoutInflater.Factory
From interface android.content.ComponentCallbacks

Public constructors

AccountAuthenticatorActivity

Added in API level 5
AccountAuthenticatorActivity ()

Public methods

finish

Added in API level 5
void finish ()

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

setAccountAuthenticatorResult

Added in API level 5
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
void onCreate (Bundle icicle)

Retreives 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

Hooray!