【发布时间】:2013-10-18 09:26:08
【问题描述】:
我正在通过此代码发送 dtmf 音。
String number="tel:+962791212121,2,3,3";
Intent c1= new Intent(android.content.Intent.ACTION_CALL, Uri.parse(number));
startActivity(c1);
它像这样发送完美的 dtmf。 2+(2 秒延迟)+3+(2 秒延迟)+3.
但我想消除那 2 秒的延迟,或者我想控制该延迟。
如何控制(2 秒延迟)? 或者在通话过程中发送dtmf音的任何其他方法?
【问题讨论】:
标签: android