Re: [android-developers] Programmatically play DTMF tones during a call

2011-04-16 Thread Takeyuki UEDA
How about ToneGenerator? http://developer.android.com/reference/android/media/ToneGenerator.html - Takeyuki On 2011/04/15, at 23:28, Mark Murphy mmur...@commonsware.com wrote: On Fri, Apr 15, 2011 at 10:16 AM, Keith Fry keith...@gmail.com wrote: Yes, I want it to play tones over the call not

[android-developers] Programmatically play DTMF tones during a call

2011-04-15 Thread keithfry
I've read that it does not seem possible to play audio files while in a phone call. However, I'd like to have an application play a DTMF tone during a phone call. There shouldn't be any hw restriction on this as the dial pad does this already when you press one of the number keys. Instead I would

Re: [android-developers] Programmatically play DTMF tones during a call

2011-04-15 Thread Mark Murphy
On Thu, Apr 14, 2011 at 10:53 AM, keithfry keith...@gmail.com wrote: I've read that it does not seem possible to play audio files while in a phone call. You can play audio files while in a phone call, but they only come out the earpiece or speaker of the phone your app is running on. The only

Re: [android-developers] Programmatically play DTMF tones during a call

2011-04-15 Thread lbendlin
I think what is actually wanted is to inject the DTMF tones into the audio input (microphone) rather than the output. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com

Re: [android-developers] Programmatically play DTMF tones during a call

2011-04-15 Thread Keith Fry
Yes, I want it to play tones over the call not over the headset speaker. I've been looking into what it takes to get access to the CallManager which has a function for playing the DTMF tones during a call, but I have not been able to get access to it using the ClassLoader. Apparently I haven't

Re: [android-developers] Programmatically play DTMF tones during a call

2011-04-15 Thread Mark Murphy
On Fri, Apr 15, 2011 at 10:16 AM, Keith Fry keith...@gmail.com wrote: Yes, I want it to play tones over the call not over the headset speaker. I've been looking into what it takes to get access to the CallManager which has a function for playing the DTMF tones during a call, but I have not been