开发者

How to terminate a call programmatically under Android?

I am using the followi开发者_如何学编程ng code for dialing programmatically under Android.

try {
    Intent callIntent = new Intent(Intent.ACTION_CALL);
    callIntent.setData(Uri.parse("tel:123456789"));
    startActivity(callIntent);
} catch (Exception exception) {
    log.e("dialing-example", "Call failed", Exception);
}

But how can I terminate the call programmatically?


You can't terminate in progress calls programatically.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜