I use this code to simply add a contact:
Intent intent = new Intent(ContactsContract.Intents.Insert.ACTION);
intent.setType(ContactsContract.RawContacts.CONTENT_TYPE);
intent.putExtra(ContactsContract.Intents.Insert.NAME, edNome.getText().toString() + ' ' + edCognome.getText().toString())
.putExtra(ContactsContract.Intents.Insert.PHONE, edCellulare.getText().toString())
.putExtra(ContactsContract.Intents.Insert.PHONE_TYPE, ContactsContract.CommonDataKinds.Phone.TYPE_MOBILE);
startActivity(intent);
I need to insert also birthday date. I saw there is the option "ContactsContract.CommonDataKinds.Event" but how do I add this to the intent?