I try to show the show video (.mp4) with exoplayer in RecyclerView and ViewPager. I show the video controller with custom layo
You can set the player to full screen by setting the params of the player.
Params params = (LinearLayout.LayoutParams)
exoPlayerView.getLayoutParams();
params.width=params.MATCH_PARENT;
params.height=params.MATCH_PARENT;
exoPlayerView.setLayoutParams(params);
}
And hide the the Action bar:
getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
getActionBar().hide();