-
Notifications
You must be signed in to change notification settings - Fork 246
FAQ
wshichang edited this page Dec 1, 2016
·
11 revisions
1. 硬解前后台切换黑屏/花屏
解决方法使用:KSYTextureView
2. x86版本SDK在android6.0上崩溃
解决方法: 使用现有的x86版本SDK,上层应用开发时选用的SDK版本应小于23;
3. 播放暂停旋转屏幕画面显示异常
解决版本v1.6.6
此问题主要出现在使用SurfaceView软解场景下,解决方法是在surfaceChanged中调用setVideoScalingMode使画面更新;
public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
if(ksyMediaPlayer != null){
//缩放方式根据需要自行设置
ksyMediaPlayer.setVideoScalingMode(KSYMediaPlayer.VIDEO_SCALING_MODE_SCALE_TO_FIT_WITH_CROPPING);
}
}