饺子播放器

<cn.jzvd.JZVideoPlayerStandard
    android:id="@+id/lsy_video_player"
    android:layout_width="match_parent"
    android:layout_height="200dp"
     />
 
  
JZVideoPlayer.FULLSCREEN_ORIENTATION = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;  //横向
JZVideoPlayer.NORMAL_ORIENTATION = ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT;  //纵向
viewHolder.lsy_video_player.setUp(videoUrl
        , JZVideoPlayerStandard.SCREEN_LAYOUT_NORMAL, "附近视频");
Glide.with(context)
        .load(icon)
        .into(viewHolder.lsy_video_player.thumbImageView);
博客地址:https://blog.csdn.net/W2316/article/details/78625930

你可能感兴趣的:(饺子播放器)