那么,我该怎么做?我试过以下
Intent intent = new Intent(ContactsContract.Intents.SHOW_OR_CREATE_CONTACT);
intent.setData(Uri.fromParts("mailto","example@email.com", null));
context.startActivity(intent);
以上只适用于mailto或tel,名称怎么样?
答案 0 :(得分:2)
你也可以使用Intents.Insert.NAME
发送人名作为:
Intent intent = new Intent(ContactsContract.Intents.SHOW_OR_CREATE_CONTACT);
intent.setData(Uri.fromParts("mailto","example@email.com", null));
// add name here
intent.putExtra(Intents.Insert.NAME, sender_Name_here);
context.startActivity(intent);