gpt4 book ai didi

android - 在输入编辑文本时获取电子邮件建议?

转载 作者:行者123 更新时间:2023-11-30 02:51:27 24 4
gpt4 key购买 nike

我正在处理我的应用程序的注册屏幕。我需要在打字时获得电子邮件建议。它不需要与 Gmail Id 帐户同步。它应该获取我用作帐户的电子邮件 ID,我们可以在帐户设置中看到它。

最佳答案

用户应该在他的 android 手机上有 Gmail 帐户

import android.accounts.Account;
import android.accounts.AccountManager;
import android.content.Context;

/**
* This class uses the AccountManager to get the primary email address of the
* current user.
*/
public class UserEmailFetcher {

static String getEmail(Context context) {
AccountManager accountManager = AccountManager.get(context);
Account account = getAccount(accountManager);

if (account == null) {
return null;
} else {
return account.name;
}
}

private static Account getAccount(AccountManager accountManager) {
Account[] accounts = accountManager.getAccountsByType("com.google");
Account account;
if (accounts.length > 0) {
account = accounts[0];
} else {
account = null;
}
return account;
}
}

在 list 中

  <uses-permission android:name="android.permission.GET_ACCOUNTS" />

来源:https://stackoverflow.com/a/2556540/950427

关于android - 在输入编辑文本时获取电子邮件建议?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24090661/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com