Is it possible to programatically set the in call volume? If so, how?
Dim p As Phone
p.VOLUME_VOICE_CALL()
p.VOLUME_ALARM()
p.VOLUME_MUSIC()
p.VOLUME_NOTIFICATION()
p.VOLUME_RING()
p.VOLUME_SYSTEM()
You can use the Phone library and then you use:
B4X:Dim p As Phone p.VOLUME_VOICE_CALL() p.VOLUME_ALARM() p.VOLUME_MUSIC() p.VOLUME_NOTIFICATION() p.VOLUME_RING() p.VOLUME_SYSTEM()
Thanks,
Margret
Yes i tried that. It just turns it down to 1 it wont turn it to 0 or mute it.Hello,
Did you try:
B4X:p.SetMute(p.VOLUME_VICE_CALL, True) 'turns it off p.SetMute(p.VOLUME_VICE_CALL, False) 'turns it back on
Thanks,
Margret
I would mute all channels one at a time and see if any will fully mute the channel. Some forked versions work differently. I have found this on two devices.
Margret