超级简单的播放视频的方法(ijkPlayer)
程序员文章站
2022-07-01 20:29:03
...
搭建环境,导入依赖
implementation 'com.dou361.ijkplayer:jjdxm-ijkplayer:1.0.5'
权限
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
布局:
<com.dou361.ijkplayer.widget.IjkVideoView
android:id="@+id/ijk_iv_rotation"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
代码,粘贴到需要的地方就可以了,网址是那里
View rootView = getLayoutInflater().from(this).inflate(R.layout.simple_player_view_player, null);
setContentView(rootView);
new PlayerView(this)
.setTitle("什么")
.setScaleType(PlayStateParams.fitparent)
.hideMenu(true)
.forbidTouch(false)
.setPlaySource("http://ips.ifeng.com/video19.ifeng.com/video09/2014/06/16/1989823-102-086-0009.mp4") //里面写你播放视频的地址
.startPlay();