我正在尝试使用一些数据启动本机添加联系人活动。我想通了大部分。现在我只是试图通过意图发送网站。这是代码
Intent intent = new Intent(Intent.ACTION_INSERT);
intent.setType(ContactsContract.Contacts.CONTENT_TYPE);
// Just some examples of information you can send to pre-fill out data for the
// user. See android.provider.ContactsContract.Intents.Insert for the complete
// list.
intent.putExtra(ContactsContract.Intents.Insert.NAME, "Foo");
intent.putExtra(ContactsContract.Intents.Insert.PHONE, "123456");
intent.putExtra(ContactsContract.Intents.Insert.EMAIL, "foo@foo.com");
intent.putExtra(ContactsContract.Intents.Insert.POSTAL, "foo drive, foo");
startActivity(intent);
android.provider.ContactsContract.Intents.Insert 没有网站字段。有没有其他方法可以传递数据?