Fullscreen the Exoplayer

前端 未结 9 1484
一向
一向 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:09

    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();
    

提交回复
热议问题