我对Android webview有一个问题。我做了这个网站的android webview的http://www.drakor.co/。Youtube预告片工作正常,但电影/视频(除youtube外)不工作。甚至连缩略图都不显示。
<iframe src="//gdriveplayer.us/embed.php?hash=FKXhiwfju94OYt5C2NUeZD3qm" frameborder="0" width="100%" height="400" allowfullscreen="allowfullscreen"></iframe>
发布于 2017-08-05 21:08:16
启用webview的javascript
WebView webView = (WebView) findViewById(R.id.webview);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true); https://stackoverflow.com/questions/45522101
复制相似问题