需要嵌入视频并将其显示在 android 活动上。以下是代码:
....Some Code
viewHolder.webView.loadData("<html><body>" + embedcode + "</body></html>","text/html", "utf-8");
viewHolder.webView.setTag("<html><body>" + embedcode + "</body></html>");
...Some code
例如,“embedcode” id 在哪里
<iframe width="560" height="315" src="//www.youtube.com/embed/MCCVVgtI5xU" frameborder="0" allowfullscreen></iframe>
但是有一个问题..当我从 TEDX 查看嵌入代码时,它工作得很好 例如:
<iframe src="http://embed.ted.com/talks/eli_beer_the_fastest_ambulance_a_motorcycle.html" width="560" height="315" frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
但是,当我有来自 You Tube 的视频时,它不起作用。!!我认为这是由于 i 帧的 src 中缺少“http:”协议。请帮忙
提前致谢。