在 Firebase 中更改 DisplayName [英] Change DisplayName in Firebase

查看:16
本文介绍了在 Firebase 中更改 DisplayName的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用电子邮件注册 Firebase.截至目前,他们无法在 Firebase 中设置 DisplayName.因此,我将用户重定向到一个课程,他们可以在通过电子邮件和密码注册后立即更改 DisplayName.

I am using email registration Firebase. As of now their is no option to set DisplayName in Firebase. So I am redirecting users to a class where they can change DisplayName soon after signing up through email and password.

我的问题是我无法做到这一点.这是我到目前为止所做的:

My problem is I am unable to achieve that. Here's what I have done so far:

public class UsernameActivity extends AppCompatActivity {
private FirebaseAuth.AuthStateListener authListener;
private FirebaseAuth auth;
private EditText mName;
private TextView btnSignUp;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_username);
    //get firebase auth instance
    auth = FirebaseAuth.getInstance();
    mName = (EditText) findViewById(R.id.name);

    btnSignUp = (TextView) findViewById(R.id.sign_up_button);
    final FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
    btnSignUp.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            auth = new FirebaseAuth.AuthStateListener() {
                @Override
                public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
                    FirebaseUser user = firebaseAuth.getCurrentUser();
                }

                if(user!=null)

                {
                    UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
                            .setDisplayName(mName)
                            .build();
                    user.updateProfile(profileUpdates);
                    Intent intent = new Intent(UsernameActivity.this, JokeActivity.class);
                    startActivity(intent);
                }
            };
        }
    });
}}

下面是我想要实现的图像.

Below is the image of what I want to achieve.

推荐答案

你必须按照这个选项

@Override
protected void onStart() {
    super.onStart();
    firebaseAuth.addAuthStateListener(mAuthListener); //firebaseAuth is of class FirebaseAuth
}

@Override
protected void onStop() {
    super.onStop();
    if (mAuthListener != null) {
        firebaseAuth.removeAuthStateListener(mAuthListener);
    }
}

并在您的 OnCreate() 或 onCreateView() 中实现:

and in your OnCreate() or onCreateView() implment this:

firebaseAuth = FirebaseAuth.getInstance();
    mAuthListener = new FirebaseAuth.AuthStateListener() {
        @Override
        public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
            FirebaseUser user = firebaseAuth.getCurrentUser();
            if (user != null) {
                if (!LoginFragment.displayName.isEmpty()) {
                    UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
                            .setDisplayName(LoginFragment.displayName).build();
                    user.updateProfile(profileUpdates).addOnCompleteListener(new OnCompleteListener<Void>() {
                        @Override
                        public void onComplete(@NonNull Task<Void> task) {
                            if (task.isSuccessful()) {
                                Log.d("Display name: ", FirebaseAuth.getInstance().getCurrentUser().getDisplayName());
                            }
                        }
                    });
                }
                LoginFragment.displayName = "";
            }
        }
    };

这篇关于在 Firebase 中更改 DisplayName的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆