Fullscreen the Exoplayer

前端 未结 9 1725
一向
一向 2021-02-02 16:05

I try to show the show video (.mp4) with exoplayer in RecyclerView and ViewPager. I show the video controller with custom layo

9条回答
  •  南旧
    南旧 (楼主)
    2021-02-02 17:00

    Be sure to set the length and width of the player view to match with its parent.

    1. Use this to hide the status bar: getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

    2. Use this to hide the navigation bar: getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);

提交回复
热议问题