Mute audio on ExoPlayer

后端 未结 7 1659
走了就别回头了
走了就别回头了 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:35

    I will recommend get the current volume first and then mute it. When you will unmute you can give user same volume.

    float currentvolume;
    currentvolume = player.getVolume();
    player.setVolume(0.0f);
    

提交回复
热议问题