Android打电话直接拨号、跳转到拨号面板、跳转到联系人

时间:2022-11-09 23:49:03

说明:

Android打电话三种种情况:直接拨号、跳转到拨号面板、跳转到联系人。

代码:

1、直接拨打电话

Intent intentPhone = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber));
startActivity(intentPhone);

2、跳转到拨号面板

Intent intent = newIntent(Intent.ACTION_DIAL,Uri.parse("tel:" + phoneNumber));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

3、跳转到联系人

Intent intentPhone = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber));
startActivity(intentPhone);