how to turn speaker on/off programmatically in android Pie and UP

后端 未结 3 1785
你的背包
你的背包 2021-02-14 18:40

Same as this question and many others from a few years ago: how to turn speaker on/off programmatically in android 4.0

It seems that Android has changed the way it handl

3条回答
  •  轮回少年
    2021-02-14 18:46

    For this problem please try the following code it is working for me.

    AudioManager myAudioManager;
    myAudioManager.setMode(AudioManager.MODE_NORMAL);
    myAudioManager.setSpeakerphoneOn(true);
    

提交回复
热议问题