依赖
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" />
activity_main
<com.dou361.ijkplayer.widget.IjkVideoView
android:id="@+id/ijk_iv_rotation"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
MainActivity
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();