JCVideoPlayer视频播放

1 compile 'fm.jiecao:jiecaovideoplayer:5.5'//视频播放

2

        android:id="@+id/jiecao_Player"

        android:layout_width="match_parent"

        android:layout_height="200dp">

   

3  清单

            android:configChanges="orientation|screenSize|keyboardHidden"

            android:screenOrientation="portrait"

            >

4  public class MainActivity extends AppCompatActivity {

    @BindView(R.id.jiecao_Player)

    JCVideoPlayerStandard jiecaoPlayer;

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        ButterKnife.bind(this);

        initview();

    }

    private void initview() {

        String s1="http://vfx.mtime.cn/Video/2019/02/04/mp4/190204084208765161.mp4";

        jiecaoPlayer.setUp(s1,jiecaoPlayer.SCREEN_LAYOUT_NORMAL,"视频标题");

    }

    @Override

    public void onBackPressed() {

        if(JCVideoPlayer.backPress()){

            return;

        }

        super.onBackPressed();

    }

    @Override

    protected void onPause() {

        super.onPause();

        JCVideoPlayer.releaseAllVideos();

    }

}


//视频网址

http://vfx.mtime.cn/Video/2019/02/04/mp4/190204084208765161.mp4

http://vfx.mtime.cn/Video/2019/03/21/mp4/190321153853126488.mp4

http://vfx.mtime.cn/Video/2019/03/19/mp4/190319222227698228.mp4

http://vfx.mtime.cn/Video/2019/03/19/mp4/190319212559089721.mp4

http://vfx.mtime.cn/Video/2019/03/18/mp4/190318231014076505.mp4

http://vfx.mtime.cn/Video/2019/03/18/mp4/190318214226685784.mp4

http://vfx.mtime.cn/Video/2019/03/19/mp4/190319104618910544.mp4

http://vfx.mtime.cn/Video/2019/03/19/mp4/190319125415785691.mp4

http://vfx.mtime.cn/Video/2019/03/17/mp4/190317150237409904.mp4

http://vfx.mtime.cn/Video/2019/03/14/mp4/190314223540373995.mp4

http://vfx.mtime.cn/Video/2019/03/14/mp4/190314102306987969.mp4

http://vfx.mtime.cn/Video/2019/03/13/mp4/190313094901111138.mp4

http://vfx.mtime.cn/Video/2019/03/12/mp4/190312143927981075.mp4

http://vfx.mtime.cn/Video/2019/03/12/mp4/190312083533415853.mp4

http://vfx.mtime.cn/Video/2019/03/09/mp4/190309153658147087.mp4

https://vfx.mtime.cn/Video/2019/01/15/mp4/190115161611510728_480.mp4

https://vfx.mtime.cn/Video/2019/08/24/mp4/190824113155647173.mp4

JCVideoPlayer视频播放_第1张图片

你可能感兴趣的:(JCVideoPlayer视频播放)