Android examples for Intent:Send Email
do Add Email To Contact via Intent
//package com.book2s; import android.content.Intent; import android.provider.Contacts.Intents; import android.provider.ContactsContract.Contacts; public class Main { public static Intent doAddEmailToContact(String email) { Intent newIntent = new Intent(Intent.ACTION_INSERT, Contacts.CONTENT_URI); newIntent.putExtra(Intents.Insert.EMAIL, email); return newIntent; }/*from w w w . ja v a2s .c o m*/ }