acceptCall

public void acceptCall(String callId)

接听通话

接听通话

Parameters

callId

呼叫id,可以从来电监听 RongCallSession.getCallId() 中获取

See also

RongCallSession#getCallId()

public void acceptCall(String callId, int cameraId, boolean mirror, StartCameraCallback callback)

打开指定摄像头方式接听通话

打开指定摄像头方式接听通话

Parameters

callId

呼叫id,可以从来电监听 RongCallSession.getCallId() 中获取

cameraId

指定的摄像头 id某些特殊设备将后置摄像头安装在设备的前面时,当打开后置摄像头时为了正常显示,请使用镜像处理;该参数设置仅对本地有效(发送出去的数据依然是未处理数据),如果本地视频流做了镜像处理,为了对端观看体验可以在onRemoteUserJoined回调中添加如下设置:

                                                        public void onRemoteUserJoined(String userId, RongCallCommon.CallMediaType mediaType, int userType, SurfaceView remoteVideo) {                                                             if (null != remoteVideo) {                                                                 ((RongRTCVideoView) remoteVideo).setMirror( boolean);//观看对方视频流是否镜像处理                                                             }                                                        }
mirror

是否镜像视频流

callback

指定摄像头打开回调