Как обновить имя пользователя и адрес электронной почты, хранящиеся в ящике Mikepenz android - PullRequest
0 голосов
/ 11 января 2020
// Create the AccountHeader

    AccountHeader headerResult = new AccountHeaderBuilder()
            .withActivity(this)

            .addProfiles(
                    new ProfileDrawerItem().withName(uname).withEmail(email).withIcon(getResources().getDrawable(R.drawable.person1))
            )
            .withOnAccountHeaderListener(new AccountHeader.OnAccountHeaderListener() {
                @Override
                public boolean onProfileChanged(View view, IProfile profile, boolean currentProfile) {
                    return false;
                }
            })
            .build();

поэтому здесь я хочу обновить имя и адрес электронной почты. эти данные будут получены из firebase и будут обновлены в имени, в полях электронной почты

1 Ответ

0 голосов
/ 12 января 2020

Найденное решение

enter image description here

Обновление профиля с идентификатором.

...