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

来源:互联网 发布:一元提现微信红包软件 编辑:程序博客网 时间:2024/06/05 02:13

说明:

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);


1 0
原创粉丝点击