0
// 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 获取并希望更新名称、电子邮件字段

4

1 回答 1

0

找到解决方案

在此处输入图像描述

使用标识符更新配置文件。

于 2020-01-12T09:47:53.967 回答