getBlank

public boolean getBlank()

Checks whether the video output is currently blanked.

Returns the current blanking state of the player, which is useful for determining if video is hidden by a blank overlay for transitions or UX purposes.

Example usage:

if (player.getBlank()) {
    Log.d("Client", "Video is currently blanked");
}

Return

true if the video is blanked, false if the video is visible.