我正在通过此代码发送 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 音的方法?