1.添加权限

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

2.带号码调起拨号键盘,需手动拨打

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

3.不调用键盘,直接拨号

Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + telephone));
startActivity(intent);
posted on 2020-09-22 22:51  广坤山货  阅读(231)  评论(0编辑  收藏  举报