通过移动应用程序拨打电话

时间:2017-11-24 05:31:51

标签: java android

拨打电话

我正试图通过我的应用程序拨打电话。但我的应用程序拨打Android移动拨号盘的号码。我想在拨打电话时使用拨号盘。我的代码是

Uri uri=Uri.parse("tel:"); Intent intent=new Intent();intent.setAction(Intent.ACTION_DIAL);

由于

2 个答案:

答案 0 :(得分:0)

试试此代码

Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + mobile));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

希望此代码可以帮助您。

答案 1 :(得分:0)

在清单中添加此权限:

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

然后在Activity中使用:

Intent callIntent = new Intent(Intent.ACTION_CALL);
            callIntent.setData(Uri.parse("tel:" + PhoneNO));
            callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            if (ActivityCompat.checkSelfPermission(Activityx.this, Manifest.permission.CALL_PHONE) != PackageManager.PERMISSION_GRANTED) {
                // TODO: Consider calling
                //    ActivityCompat#requestPermissions
                // here to request the missing permissions, and then overriding
                //   public void onRequestPermissionsResult(int requestCode, String[] permissions,
                //                                          int[] grantResults)
                // to handle the case where the user grants the permission. See the documentation
                // for ActivityCompat#requestPermissions for more details.
                return;
            }
            startActivity(callIntent);