Mute audio on ExoPlayer

后端 未结 7 1625
走了就别回头了
走了就别回头了 2020-12-09 02:13

I\'m using Google new MediaPlayer named ExoPlayer and cannot find a way to mute the sound

Is there an easy way to mute audio track on Google ExoPlayer ? Or changing

相关标签:
7条回答
  • 2020-12-09 02:52

    The new way to mute and unmute volume as of version 2.3.1 can be done as follows:

    int currentvolume = player.getVolume();
    

    make sure to call the line above after starting the player otherwise you will get a nullpointerexception

    to mute volume:

    player.setVolume(0f);
    

    to unmute volume:

    player.setVolume(currentVolume);
    
    0 讨论(0)
提交回复
热议问题