Android实现拨打电话的两种方式

时间:2022-11-10 14:19:59


在Android开发中,有时候我们需要点击电话号码,直接拨打电话或者跳转到拨打电话界面。

这个功能,Google又给我提供的 Intent方法。我们可以直接使用:


首先,拨打电话需要添加权限:

<uses-permission android:name="android.permission.CALL_PHONE" />


代码:

/**
* 拨打电话
*/
private void callPhone() {
// 1. 到了拨号界面,但是实际的拨号是由用户点击实现的。
Intent intent = new Intent(Intent.ACTION_DIAL);
// 2. 对用户没有提示,直接拨打电话
// Intent intent = new Intent(Intent.ACTION_CALL);
Uri data = Uri.parse("tel:" + "15810723012");
intent.setData(data);
startActivity(intent);
}