我希望能够显示Google帐户的显示名称。
使用GoogleAccountCredential,我可以获得电子邮件。
如何从GoogleAccountCredential(电子邮件)获取displayName?

最佳答案

您可以使用GoogleSignInAccount

OptionalPendingResult<GoogleSignInResult> opr = Auth.GoogleSignInApi.silentSignIn(mGoogleApiClient);
if (opr.isDone()) {
    GoogleSignInResult signInResult = opr.get();
    GoogleSignInAccount account = result.getSignInAccount();
    String displayName = account.getDisplayName();
    String givenName = account.getGivenName();
    String familyName = account.getFamilyName();
}

07-24 09:16