PhoneLoginTracker
最新版的 SDK 已不支持此类。

Tracks broadcasts about changes in the status of the current phone login model

The PhoneLoginTracker.stopTracking() method should be called in the onDestroy() method of the receiving Activity or Fragment.

扩展:TrackerBase
应用安装包:accountkit
构造函数
PhoneLoginTracker()
public PhoneLoginTracker()
实例方法
getCode()

Returns the code that is stored on this tracker.

public String getCode()
Returns
The confirmation code
setCode(String)

Stores a code on this tracker.

public void setCode(String code)
参数描述
codeThe confirmation code
onStarted(PhoneLoginModel)

The method that will be called when the login has started.

The polling has started at this point.

protected abstract void onStarted(PhoneLoginModel loginModel)
参数描述
loginModelThe current login model
onSuccess(PhoneLoginModel)

The method that will be called when the login has completed

protected abstract void onSuccess(PhoneLoginModel loginModel)
参数描述
loginModelThe current login model
onError(AccountKitException)

The method that will be called when the login has an error

protected abstract void onError(AccountKitException exception)
参数描述
exceptionThe exception
onCancel(PhoneLoginModel)

The method that will be called when the login was canceled

protected abstract void onCancel(PhoneLoginModel loginModel)
参数描述
loginModelThe login that was canceled
常量
ACTION_PHONE_LOGIN_STATE_CHANGED
public static final String ACTION_PHONE_LOGIN_STATE_CHANGED