我正在使用Sinch api开发一个小型应用程序。但是当我进行视频通话并在onVideoTrackAdded
之前显示本地预览时(仍然没有用户预览)。 onCallProgressing
之后,本地预览版式将显示黑色背景。本地预览会怎样?
这是添加预览的代码
VideoController mVideoController=mSinchServiceInterface.getVideoController();
mVideoController.setResizeBehaviour(VideoScalingType.ASPECT_FILL);
View myPreview = mVideoController.getLocalView();
frame_myPreview.removeAllViews();
frame_myPreview.addView(myPreview);