Какой строковый ключ и атрибут карты значений можно разместить с помощью функции createAccount в Smack api? - PullRequest
0 голосов
/ 19 августа 2011

Я действительно не пробовал это, мне просто любопытно, какие атрибуты можно установить с помощью createAccount с AccountManager:

createAccount(String username, String password, Map<String,String> attributes)

Могу ли я указать любой ключ и значение String, или для этого существует определенный стандарт?

Ответы [ 2 ]

2 голосов
/ 26 февраля 2015
name -- the user's name.
first -- the user's first name.
last -- the user's last name.
email -- the user's email address.
city -- the user's city.
state -- the user's state.
zip -- the user's ZIP code.
phone -- the user's phone number.
url -- the user's website.
date -- the date the registration took place.
misc -- other miscellaneous information to associate with the account.
text -- textual information to associate with the account.
remove -- empty flag to remove account. 

См. AccountManager javadoc

2 голосов
/ 19 августа 2011

Атрибуты получаются путем вызова

accountManager.getAccountAttributes()

Проверьте javadoc для метода createAccount (), который вы упомянули.Внизу.

See Also:
    getAccountAttributes()
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...