I have a simple application with google authentification, and I want to display a welcome message. If the email account is j[email protected], I want a Toast
with "Welcome John Smith!" How can I do that?
This is my code:
if (user == null) {
startActivityForResult(AuthUI.getInstance().createSignInIntentBuilder().build(), SIGN_IN_REQUEST_CODE);
} else {
Toast.makeText(MainActivity.this, "Welcome " + userName, Toast.LENGTH_SHORT).show();
}
I tried to use this code, but I get only the user name, not the first and last name.
AccountManager manager = (AccountManager) getSystemService(ACCOUNT_SERVICE);
Account[] list = manager.getAccounts();
Thanks in advance!
onActivityResult:
handleSignInResult :
You can find more on
GoogleSignInAccount
: https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInAccount