方法很固定:
Intent intent = new Intent(Intent.ACTION_INSERT);
intent.setType(“vnd.android.cursor.dir/person”);
intent.setType(“vnd.android.cursor.item/contact”)
intent.setType(“vnd.android.cursor.item/raw_contact”); intent.putExtra(android.provider.ContactsContract.Intents.Insert.NAME, “handsome”);
intent.putExtra(android.provider.ContactsContract.Intents.Insert.COMPANY,”啦啦啦”);
intent.putExtra(android.provider.ContactsContract.Intents.Insert.PHONE, “12222222”);
startActivity(intent);
CONTENT_ITEM_TYPE 这个是部分机型适用的(碰到奇葩的ROM可以试试这个),大部分机型是用如图所示的CONTENT_TYPE 。
android通过Intent跳转到添加联系人界面的小结
最新推荐文章于 2022-07-11 07:35:00 发布