Change DisplayName in Firebase

大兔子大兔子 提交于 2019-12-18 09:33:03

问题


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.


回答1:


You have to follow this option

@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);
    }
}

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 = "";
            }
        }
    };


来源:https://stackoverflow.com/questions/41105826/change-displayname-in-firebase

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!