いくつかのデータを使用して、ネイティブの連絡先追加アクティビティを起動しようとしています。大体分かった。今、私は意図を介してウェブサイトを送信しようとして立ち往生しています。これがコードです
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 にはウェブサイト フィールドがありません。データを渡す他の方法はありますか?