void button_Click(object sender, EventArgs e)
{
//Create a new intent for choosing a contact
var contactPickerIntent = new Intent(Intent.ActionPick,
Android.Provider.ContactsContract.CommonDataKinds.Email.ContentUri);
//Start the contact picker expecting a result
// with the resultCode '101'
StartActivityForResult(contactPickerIntent,101); // mostra a lista dos contactos do telefone, so com as pessoas com email.
}
My code is this, when I click the button it appears to me all the contacts of the user with email. And what I wanted was to know how to store this information, for example the user selects a person from their contacts and I want to send an email to that person, but for this I need to save the contact information and this is what I do not know how to do .
Thanks to anyone who can help.