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

后端 未结 3 1735
你的背包
你的背包 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 19:09

    try this:

        AudioManager audioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
        audioManager.setMode(AudioManager.STREAM_MUSIC);
        audioManager.setSpeakerphoneOn(true);
    

提交回复
热议问题