启动拨号器

此示例显示如何使用提供的电话号码打开默认拨号程序(定期呼叫的应用程序):

Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:9988776655")); //Replace with valid phone number. Remember to add the tel: prefix, otherwise it will crash.
startActivity(intent);

运行上面代码的结果:

StackOverflow 文档