I use call android SIP(android.net.sip)for VOIP. Trying to send DTMF. The SipAudioCallclass method android was two methods set
void sendDtmf(int code, Message result)
Sends a DTMF code.
void sendDtmf(int code)
Sends a DTMF code.
I am thinking of using a method sendDtmf(int code)to send DMTF. but I don’t know how I can determine if it is really sent or not. After implementing this, I do not get any tone on the receiver / sender side. Calling for this does not give me any effect (since its background processing is not visible). Can someone please let me know how I can change it? Also, please explain to me the use of the second method sendDtmf(int code, Message result).
source
share