如何使我的videoPlayer像迷你模式一样工作。
我想显示在右下角,当视频播放时我想继续浏览应用。
在这里,我可以制作videoPlayer和表面半尺寸。
WindowManager.LayoutParams params = getWindow().getAttributes();
params.x = -100;
params.height = videoHeight;
params.width = videoWidth;
params.y = -50;
NXPPlayerActivity.this.getWindow().setAttributes(params);
ViewGroup.LayoutParams lp = mMyLVSurfaceView.getLayoutParams();
lp.height = videoHeight;
lp.width = videoWidth;
mMyLVSurfaceView.setLayoutParams(lp);