当屏幕方式为上下留黑边时,原生平台(ANDROID)下的VideoPlayer的显示位置不正确,需要修改jsb-videoplayer.js的如下代码
this._video.setFrame(tx, height - h - ty, this._w * a, this._h * d)
为
this._video.setFrame(tx, height - this._h * d - ty, this._w * a, this._h * d);
该问题已经在2.2版本更新处理了
当屏幕方式为上下留黑边时,原生平台(ANDROID)下的VideoPlayer的显示位置不正确,需要修改jsb-videoplayer.js的如下代码
this._video.setFrame(tx, height - h - ty, this._w * a, this._h * d)
为
this._video.setFrame(tx, height - this._h * d - ty, this._w * a, this._h * d);
该问题已经在2.2版本更新处理了