一個強悍而優美的Android視訊播放器控制元件JieCaoVideoPlayer
阿新 • • 發佈:2018-12-15
本文為轉載文章,原文作者:魑魅魍魎9527 原文連結:https://blog.csdn.net/qq_28934205/article/details/52944383?utm_source=copy
效果圖: 視訊可以全屏 顯示 旋轉螢幕也可以
xml程式碼:
<fm.jiecao.jcvideoplayer_lib.JCVideoPlayerStandard android:id="@+id/video_player" android:layout_width="match_parent" android:layout_height="367px" />
java程式碼
private void showVideo() { String url = "http://183.6.245.249/v.cctv.com/flash/mp4video6/TMS/2011/01/05/cf752b1c12ce452b3040cab2f90bc265_h264818000nero_aac32-1.mp4"; video_player.setUp(url, JCVideoPlayerStandard.SCREEN_LAYOUT_LIST, "緣愛"); ImageUtils.imageLoader(video_player.thumbImageView, "http://a.hiphotos.baidu.com/image/pic/item/caef76094b36acaf6e838d1f74d98d1000e99cf5.jpg"); }
就這樣一個視訊播放器就可以了 github地址
https://github.com/lipangit/jiecaovideoplayer