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
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);