I try to show the show video (.mp4) with exoplayer in RecyclerView and ViewPager. I show the video controller with custom layo
Be sure to set the length and width of the player view to match with its parent.
Use this to hide the status bar:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
Use this to hide the navigation bar:
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);