本文介绍了Android的双音多频的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我通过这个code发送DTMF音。
I am sending dtmf tone via this code.
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。的
It send perfect dtmf as this. 2+(2 sec delay)+3+(2 sec delay)+3.
但我要删除2秒延迟或我想控制延迟。
but I want to remove that 2 sec delay or I want to control that delay.
我如何控制的(2秒延时)?
或任何其他方法来调用期间发送DTMF音?
How can I control (2 sec delay)?Or any other method to send dtmf tone during call?
推荐答案
要删除立即删除逗号。
这篇关于Android的双音多频的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!