How to hide all controllers in ExoPlayer2 (start button, pause, etc.) that they did not exist, and the screen was always full.
I looked, there is a simpleExoPlayerView.setUseController(true)
method;
But he deactivates the player ...
public void setUseController (boolean useController) { this.useController = useController; if (useController) { controller.setPlayer(player); } else { controller.hide(); controller.setPlayer(null); } }
How to hide or remove these components?
source share