在后台拨打电话

时间:2014-06-25 17:09:27

标签: android android-activity

我希望我的后台服务拨打电话,所以我使用:

Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:77777777"));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_FROM_BACKGROUND);
startActivity(intent);

如果用户已经在通话,则他的通话暂停。

我不想打扰他的电话。 我的服务可以拨打一个安静的电话吗?意思是:拨打电话并以某种方式让当前的电话不受干扰?

1 个答案:

答案 0 :(得分:3)

  

我的服务是否可以拨打一个安静的电话?

没有