注册

Android WebView 接入环信客服,视频通话时摄像头打开失败

已邀请:
就是在webview中加载H5的客服云。webview中基本设置都配置过了,录音和相机权限也都有,图片和文件都可以正常打开,就是打开视频的时候提示打开摄像头失败导致不能正常连接
核心代码为:
private class myWebChromeClient extends WebChromeClient {
        @Override
        public void onProgressChanged(WebView view, int newProgress) {
            super.onProgressChanged(view, newProgress);
        }

        @TargetApi(Build.VERSION_CODES.LOLLIPOP)
        @Override
        public void onPermissionRequest(PermissionRequest request) {
            request.grant(request.getResources());
        }

        // Android 3.0+
        public void openFileChooser(ValueCallback<Uri> uploadMsg) {
            mUploadMessage = uploadMsg;
            Intent i = new Intent(Intent.ACTION_GET_CONTENT);
            i.addCategory(Intent.CATEGORY_OPENABLE);
            i.setType("image/*");
            startActivityForResult(Intent.createChooser(i, "File Chooser"), FILECHOOSER_RESULTCODE);
        }

        //Android 5.0会调用这个
        @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
        public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, FileChooserParams fileChooserParams) {
            //确保没有现有的消息
            if (uploadMessage != null) {
                uploadMessage.onReceiveValue(null);
                uploadMessage = null;
            }
            uploadMessage = filePathCallback;
            Intent intent = fileChooserParams.createIntent();
            startActivityForResult(intent, REQUEST_SELECT_FILE);
            return true;
        }
 

请问一下问题解决了吗?我也遇到这个问题了

要回复问题请先登录注册