Fullscreen the Exoplayer

前端 未结 9 1738
一向
一向 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 16:54

    You can use this library if you want a FullScreen Exoplayer :

    https://github.com/Norulab/android-exoplayer-fullscreen

    This library contain some extensions functions for ExoPlayer :

    val player = SimpleExoPlayer.Builder(context).build()
    player.preparePlayer(playerView)
    player.setSource(applicationContext, "http://html5videoformatconverter.com/data/images/happyfit2.mp4")
    

提交回复
热议问题