我使用这段代码将 Vimeo 播放器加载到 WebView 中:
WebView webView = (WebView) rootView.findViewById(R.id.web_view);
webView.getSettings().setJavaScriptEnabled(true);
String data = "<iframe src=\"http://player.vimeo.com/video/102234762\" width=\"350\" height=\"300\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>";
webView.loadData(data, "text/html", "UTF-8");
这就是我得到的:
但是,当我单击播放按钮时,背景变为灰色并且视频无法开始:
任何想法家伙可能是什么问题以及如何解决这个问题?
该代码在装有 Android 4.2.2 的三星 S4 上运行。