5

我知道在 Android 中可以制作拨号器,

但是是否可以在通话期间使拨号器“按 1”?(例如,当您致电支持人员时,您必须按各种数字才能与人交谈)是否有代码说明如何做到这一点?

4

2 回答 2

1

感谢 simon 指点我在上行链路通话中发送 DTMF 音调

所以似乎有一个应用程序可以做到这一点https://play.google.com/store/apps/details?id=com.shdroid.bridgetrial&feature=more_from_developer#?t=W10,但人们不知道该怎么做它http://code.google.com/p/android/issues/detail?id=1428

于 2012-09-17T10:12:38.533 回答
0

创建呼叫意图并使用startActivity启动它

Intent call = new Intent("android.intent.action.CALL", Uri.parse("tel://" + number));
startActivity(call);
于 2012-09-17T09:35:18.787 回答