是否可以从网络视图播放YouTube视频,就像我从浏览器访问YouTube网站并且视频开始播放一样,它会全屏播放视频。
到目前为止,这是我的代码:
webView = (WebView) v.findViewById(R.id.webview);
webView.setWebChromeClient(new WebChromeClient());
webView.setWebViewClient(new WebViewClient());
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setPluginState(WebSettings.PluginState.ON);
webView.setWebChromeClient(new WebChromeClient() {
public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) {
super.onShowCustomView(view, callback);
if (view instanceof FrameLayout) {
final FrameLayout frame = (FrameLayout) view;
if (frame.getFocusedChild() instanceof VideoView) {
// get video view
VideoView video = (VideoView) frame.getFocusedChild();
Uri mUri = null;
try {
Field mUriField = VideoView.class.getDeclaredField("mUri");
mUriField.setAccessible(true);
mUri = (Uri) mUriField.get(video);
Log.d(TAG, "the uri is "+mUri.toString());
Intent i = new Intent();
i.setData(mUri);
i.setAction(Intent.ACTION_VIEW);
startActivity(i);
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
});
webView.loadUrl("www.youtube.com");
我想仅在用户点击网页视图中的YouTube视频上的“播放”时启动YouTube应用,而不是之前。
需要显示整个频道,因此用户可以选择要播放的视频,与从浏览器应用访问youtube网站相同的行为。
编辑:按照建议我添加了onShowCustomView()方法来处理播放点击,现在我得到一些uri,我怎样才能在全屏视频视频中播放视频?
答案 0 :(得分:2)
webView = (WebView) findViewById( R.id.webview_1 );
String play= "<html><body>Youtube <br> <iframe class=\"youtube-player\" type=\"text/html\" width=\"600\" height=\"300\" src=\"http://www.youtube.com/embed/bIPcobKMB94\" frameborder=\"0\"></body></html>"
webView.loadData(play, "text/html", "utf-8");