如何在颤振中断开电话?

时间:2020-06-20 21:59:40

标签: android android-studio flutter dart

我制作了可以自动拨打给定号码的应用,代码如下。现在,我想在10秒后断开通话。是的,怎么可能呢?

    android_intent.Intent()
      ..setAction(android_action.Action.ACTION_CALL)
      ..setData(Uri(scheme: "tel", path: _controllerPhone.text))
      ..startActivity().catchError((e) => print(e));

1 个答案:

答案 0 :(得分:1)

由于呼叫应用程序是与您的应用程序不同的应用程序,因此您无法进行干预。当然,如果您直接在应用程序中拨打电话,则可以非常轻松地做到这一点。