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