** I really need help if you don\'t know anything don\'t give me a negative point :| if something bother you comment**
I want to write custom UI for my player in Exo
Actually the code of involking play & pause methods are in class PlayerControl.
If you don't want to use default Android media controller UI, just don't use the MediaController
class, create your own UI in your layout file with custom play & pause button and bind the actions with the button's onClickListener.
To play the video, call exoPlayer.setPlayWhenReady(true);
And to pause: call exoPlayer.setPlayWhenReady(false);
It's similar problem with how to create custom UI for android MediaController