How to stop a intent.ACTION_CALL once started?

后端 未结 1 962
没有蜡笔的小新
没有蜡笔的小新 2021-01-16 01:29

I am using Intent intent = new Intent(Intent.ACTION_CALL); to make a call from my application.

is there any way to terminate the call after a period of

相关标签:
1条回答
  • 2021-01-16 02:02

    Your question has been asked a number of times. The short answer is that there is no official way to do that.

    The long answers:

    • End Call in Android
    • unable to end call in android verstion 2.2.6
    • Ending the Out going call

    Read them carefully. Look for the cases where someone says "used to work...".

    In one of the questions someone proposed to turn on airplane mode (the app need permissions to do that, of course). It's crude, but it works. As a user, I would have some reservations about an app doing that, though.

    0 讨论(0)
提交回复
热议问题