Questions tagged [speakerphone]
31 questions
2
votes
1 answer
AudioManager is unreliable
AudioManager is unreliable in onCallStateChanged. During a phone call I need it to turn on speaker phone and set the volume to max. It sometimes turns on speakerphone (usually during the second or later call) and rarely turns the volume up. My…

user3001127
- 383
- 3
- 15
2
votes
0 answers
song playing on the speakerphone and on headphone at the same time
I'm using this code to select a song :
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/*");
activity.startActivityForResult(Intent.createChooser(intent, "Select a song"),1);
but when I'm using a headphone, if I select a…

pedroimai
- 21
- 1
1
vote
1 answer
How can I make a phone call using the speaker in iOS?
I know that using the URL with tel:// I can launch the phone app to make a phone call, but I don't know how to do the phone call with the speaker turned on.
Thanks!

Joaquín M
- 1,135
- 1
- 10
- 20
1
vote
0 answers
Turn on device speakers via adb in Android 11
I came across this post while trying to figure out the adb command for my Pixel 5 running Android 11.
When I run the suggested command for Adroid 7.0+ - adb shell service call audio 29 i32 1, it turns mute on and off and not the speaker.
I'm…

ocbit
- 63
- 6
1
vote
1 answer
iOS 14.2 directs app audio output to ear speaker instead of bottom speaker
An app that I built has always output its audio through the bottom speaker (speakerphone), but it now outputs to the front (ear) speaker. I have not changed the app, so I assume the cause must be iOS 14.2, which I recently installed.
The app uses…

Anton
- 2,512
- 2
- 20
- 36
1
vote
1 answer
Sinch redirect call to loudspeaker android
I have created a calling app for android using Sinch. However I would like give the user the ability to take part in the call via loudspeaker.
I went through the documentation for a bit and thought that Sinch could not help me this but this is…

Tyson
- 747
- 2
- 6
- 18
1
vote
0 answers
How to enable Speakerphone on android through adb shell?
I am working on a testing tool and I am able to initiate and terminate voice call from default Dialer app in android using following commands.
adb shell am start -a android.intent.action.CALL -d tel:+919999999999
adb shell input keyevent…

Sunil Shahu
- 946
- 1
- 9
- 24
1
vote
0 answers
Get real speaker state on laptop?
I have a phone app which include a function of speaker detection, and also work sucessfully.
And now I was moving the phone app to the laptop, but since the hardware is totally different(Laptop: speaker only?, Phone: speaker and receiver?), so I…

Tyo Yang
- 81
- 8
0
votes
1 answer
2nd sound plays with less integrity?
I want to press the button on the headset, play a sound via the speaker phone, then record a 10 second audio clip. Here is my code:
SoundPool soundPool;
HashMap soundPoolMap;
soundPool = new SoundPool(4,…

Lily
- 197
- 2
- 2
- 10
0
votes
0 answers
The speakerphone doesn't work when I get or receive a call
I'm creating an application that automatically switches to speakerphone when a call comes or receives it. I hope that the function will function normally.
In order to automatically switch to speakerphone when a call is made or received, I wrote the…

minnnisu
- 1
0
votes
1 answer
Detected phone call taken with bluetooth headset or speaker on Android
I can already detect when an Android phone makes or takes a phone call, but I would also like to know if a bluetooth headset is being used for the call and/or if the phone's speaker is being used for the call. I have looked around a bit but I don't…

Joshua Abrams
- 377
- 1
- 5
- 17
0
votes
0 answers
Android forcefully turning off speaker phone for outgoing call
I am trying to make an outgoing call in speaker phone turned on programaticaly but none of the answers in the blog responds well. I tried each and every method that is available in the blog but what i figured is the android itself is forcefully…

Lohith P
- 1
- 1
0
votes
0 answers
Unable to turn on speaker phone in call Android
I am developing a Phone application I want to turn speaker ON/OFF in call.
I want to enable and disable the speaker with a button click and I am using the following code.
I tried different methods to turn on speakerphone but those are not worked.
…
0
votes
0 answers
i want find loudspeaker state of android phone during telephone call conversation
I want to find loudspeaker state during call conversation. like speaker state true/ false.
my code in call receiver
AudioManager audioManager = (AudioManager)…

Bramaramba
- 1
- 3
0
votes
1 answer
Apple demo iPhone app called SpeakHere won't respond to kAudioSessionOverrideAudioRoute_None
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 =…

Scott Pendleton
- 1,021
- 3
- 16
- 32