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.
精彩评论