2

我使用下面的代码来获取配置的帐户名称

Account[] accounts = AccountManager.get(this).getAccounts();
        for (Account account : accounts) {

        Log.d("Account", "Name " + account.name);

        }

但我需要配置的Microsoft Exchange 帐户的电子邮件 ID ,因为我们可以更改帐户的名称(它不需要是唯一的)。

提前致谢

4

4 回答 4

8

此代码正常工作

public class RegisteredEmailAccounts extends Activity
{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.registered_email_account);
    final TextView accountsData = (TextView) findViewById(R.id.accounts);

      String possibleEmail="";

       try{
               possibleEmail += "************* Get Registered Gmail Account 
                                  *************\n\n";
               Account[] accounts =  
           AccountManager.get(this).getAccountsByType("com.google");

               for (Account account : accounts) {

                 possibleEmail += " --> "+account.name+" : "+account.type+" , \n";
                 possibleEmail += " \n\n";

               }
          }
          catch(Exception e)
          {
               Log.i("Exception", "Exception:"+e) ; 
          }


          try{
               possibleEmail += "**************** Get All Registered Accounts 
                      *****************\n\n";

               Account[] accounts = AccountManager.get(this).getAccounts();
               for (Account account : accounts) {

                  possibleEmail += " --> "+account.name+" : "+account.type+" , \n";
                  possibleEmail += " \n";

               }
          }
          catch(Exception e)
          {
               Log.i("Exception", "Exception:"+e) ; 
          }

       // Show on screen    
       accountsData.setText(possibleEmail);

       Log.i("Exception", "mails:"+possibleEmail) ;
     }
}
于 2014-10-16T13:03:04.460 回答
6
@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_splash);


    String gmail = null;

    Pattern gmailPattern = Patterns.EMAIL_ADDRESS; // API level 8+
    Account[] accounts = AccountManager.get(this).getAccounts();
    for (Account account : accounts) {
        if (gmailPattern.matcher(account.name).matches()) {
             gmail = account.name;
        }
    }

    Toast.makeText(this, gmail, Toast.LENGTH_LONG).show();

}
于 2014-04-01T12:39:19.857 回答
4

我认为这段代码对你有帮助,亲爱的。

这是我的代码:

AccountManager accManager = AccountManager.get(context);
Account acc[] = accManager.getAccounts();
int accCount = acc.length;
AppConstants.accOnDevice = new Vector<String>();
for(int i = 0; i < accCount; i++){
//Do your task here...
}

<uses-permission android:name="android.permission.GET_ACCOUNTS" />
于 2013-10-18T12:17:25.393 回答
0

试试这个代码,肯定会为你工作

AccountManager accManager = AccountManager.get(getApplicationContext());
Account acc[] = accManager.getAccountsByType("com.google");
int accCount = acc.length;

for(int i = 0; i < accCount; i++)
{
    //Do your task here...            
    Toast.makeText(getApplicationContext(),acc[i].name,Toast.LENGTH_SHORT).show();
}
于 2015-04-23T13:19:34.060 回答