I am developing an application which requires to auto populate a default email field. The logical choice is to retrieve the email address from the email client provided by android. I searched the content providers and did not find anything about the email client. How is this information stored? How can I reach it?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Try this:

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...
}

Permission:

<uses-permission android:name="android.permission.GET_ACCOUNTS" />
link|improve this answer
hi i fallow the above code it's working good.If don't please give info about, how to get sent and received info details.If u know please help me. – kiran May 16 at 7:45
1  
sorry, this info is not provided. – Vineet Shukla May 16 at 8:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.