android调用系统添加联系人界面

 Intent intent = new Intent(Intent.ACTION_INSERT);
          intent.setType("vnd.android.cursor.dir/person");
          intent.setType("vnd.android.cursor.dir/contact");
          intent.setType("vnd.android.cursor.dir/raw_contact");
          startActivity(intent);

你可能感兴趣的:(android,insert)