is Muted
Checks if the audio is muted.
Indicates whether the audio is currently muted.
Example usage:
SurfaceView surfaceView = findViewById(R.id.surface_view);
SandboxedPlayer player = new SandboxedPlayer(context, surfaceView);
player.mute(true);
if (player.isMuted()) {
Log.d("Client", "Audio is muted");
}
Content copied to clipboard
Return
True if muted, false otherwise.