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

Accesses Account preferences that are stored on the Account Kit servers for the associated app and account.

Get an instance of this class through AccountKit.getAccountPreferences()

应用安装包:accountkit
实例方法
deletePreference(String, OnDeletePreferenceListener)

Deletes a single preference.

public void deletePreference(String key, OnDeletePreferenceListener listener)
参数描述
keyThe key for the preference
listenerThe listener to be notified when the preference has been deleted
loadPreference(String, OnLoadPreferenceListener)

Loads a single preference.

public void loadPreference(String key, OnLoadPreferenceListener listener)
参数描述
keyThe key for the preference
listenerThe listener to be notified when the preference has been loaded
loadPreferences(OnLoadPreferencesListener)

Loads all preferences.

public void loadPreferences(OnLoadPreferencesListener listener)
参数描述
listenerThe listener to be notified when the preferences have been loaded
setPreference(String, String, OnSetPreferenceListener)

Writes a single preference.

public void setPreference(String key, String value, OnSetPreferenceListener listener)
参数描述
keyThe key for the preference - must be ASCII letters, digits or the underscore character and be 1-100 characters in length
valueThe value for the preference - must be 1-1000 characters in length
listenerThe listener to be notified when the preference has been set