文件名称:视频播放各种格式
文件大小:20.18MB
文件格式:RAR
更新时间:2019-02-03 10:33:16
视频
/**
* 构造函数,这种情况下,无法自动加载xml
* 适用于手动加载的情况下,new完毕后,使用:setLayers 函数来加载响应的layer
*
* @param context
*/
public VDVideoView(Context context) {
super(context);
VDApplication.getInstance().setContext(context);
mContext = context;
setBackgroundColor(0x0);
registerController(context);
init();
if (mVideoView == null) {
mVideoView = VDVideoViewController.create(context);
VDVideoViewController controller = VDVideoViewController
.getInstance(context);
if (controller != null)
controller.setContext(context);
initVideo();
}
if (((View) mVideoView).getParent() == null) {
addVideoView(mVideoView);
}
}