Hello. I am trying to make an application for Windows Mobile 6 and one of it's features is enabling and disabling the speakerphone. How can this be done in C# code? I'm guessing a P/Invoke. Please let me know, I need this information to get my application really going.
Thanks
...
Hi,
I am trying to set speakerphone on in a call programmatically using audiomanager.setSpeakerphoneOn(true) in a service but it seems it is not working and I don't know why.
Should I do something else?
Thanks
...
I was trying out Apple's sample app SpeakHere, and wanted to listen through the speakerphone speaker instead of the ear speaker.
I was able to turn on the speakerphone speaker using this code:
UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, sizeof(sessio...