Intent intent =new Intent(
Intent.ACTION_INSERT,
Uri.withAppendedPath(
Uri.parse("content://com.android.contacts"),
"contacts"));
intent.putExtra(Intents.Insert.PHONE, number);
startActivity(intent);
|