Android 中的 YouTube 网页视图
我使用 Webview
在我的应用程序中显示一些 html 数据。我正在使用以下代码。
WebView featureview = (WebView) findViewById(R.id.featureview);
WebSettings webSettings = featureview.getSettings();
webSettings.setJavaScriptEnabled(true);
featureview.loadData(featureDescription, "text/html", "utf-8");
一些 html 数据使用 。但它给出黑屏。代码有什么问题?在这里我想补充一点,我已经安装了 Flash 播放器,并且正在 Android 2.2 设备中尝试。
I have using Webview
to display some html data in my app. I am using the following code.
WebView featureview = (WebView) findViewById(R.id.featureview);
WebSettings webSettings = featureview.getSettings();
webSettings.setJavaScriptEnabled(true);
featureview.loadData(featureDescription, "text/html", "utf-8");
Some of the html data has embedded video from youtube using code like <iframe height='390' frameborder='0' width='640' allowfullscreen='' src='http://www.youtube.com/embed/8xgkw67o0Gc' title='YouTube video player'></iframe>
. But it is giving black screen. what is the problem in code? Here I like to add I have installed the flash player and I am trying in in Android 2.2 device.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
或未弃用的等效项:
Try:
Or the non-deprecated equivalent:
启用 javascript 请
参阅此链接
http://www.anddev.org/novice-tutorials-f8/play-youtube-videos-with-youtube-app-from-webview-t50422.html
Enable javascript
see this links
http://www.anddev.org/novice-tutorials-f8/play-youtube-videos-with-youtube-app-from-webview-t50422.html