方法很固定:
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);
android通过Intent跳转到添加联系人界面的小结
CONTENT_ITEM_TYPE 这个是部分机型适用的(碰到奇葩的ROM可以试试这个),大部分机型是用如图所示的CONTENT_TYPE 。

相关文章:

  • 2021-09-21
  • 2021-09-07
  • 2021-12-05
  • 2021-06-07
  • 2021-12-13
  • 2022-12-23
  • 2021-09-07
猜你喜欢
  • 2021-08-20
  • 2021-08-28
  • 2022-01-01
  • 2022-12-23
  • 2022-01-26
相关资源
相似解决方案