我使用本指南:Camera and video control with HTML5
此示例在Google Chrome上运行良好,但我无法在Android webview上运行。我也使用权限:android.permission.CAMERA。
答案 0 :(得分:0)
您是否记得将此添加到onCreate
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
webSettings.setAllowFileAccessFromFileURLs(true);
webSettings.setAllowUniversalAccessFromFileURLs(true);
您可能错过了代码中的最后两行。
这是一个有效的example
答案 1 :(得分:0)
Webview / Android浏览器直到最近才支持通过webview访问摄像头的方法。谢天谢地,现在支持getUserMedia
http://caniuse.com/#search=Accept http://caniuse.com/#feat=stream