cocos2x 接入腾讯云 直播(rtmp)出现白条

cocos2x 接入腾讯云 直播rtmp 游戏上面出现白条

代码:
RelativeLayout.LayoutParams layoutParams=new RelativeLayout
.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

	layoutParams.width =  dwidth;
	layoutParams.height = dheight;   	
    cloudVideo = new TXCloudVideoView(this);
    cloudVideo.setX(sx);
    cloudVideo.setY(sy);
    cloudVideo.setLayoutParams(layoutParams);
    
    mFrameLayout.addView(cloudVideo);
    
    Log.d(TAG, cloudVideo.getX() +"" + cloudVideo.getY());
	
	mLivePlayer = new TXLivePlayer(this);
	mLivePlayer.setPlayerView(cloudVideo);
	
	mLivePlayer.startPlay(pathUri, TXLivePlayer.PLAY_TYPE_LIVE_RTMP);

在Cocos2dxActivity.java 的init()中添加如下代码

this.mGLSurfaceView.setZOrderOnTop(true);

你处理一下代码界面。