isMuted

public boolean isMuted()

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

Return

True if muted, false otherwise.