I have a fragment and a videoview is present inside that fragment.I have a you tube url for video. I tried videoview as well as webview. But it is not working. How i should play that video inside that layout?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Just use normal a webview
and everything will be fine.
Try this: (Tested and works)
new Thread(new Runnable() {
@Override
public void run() {
final WebView myWebView = (WebView) findViewById(R.id.webView1);
myWebView.setWebViewClient(new WebViewClient());
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView.setWebChromeClient(new WebChromeClient());
try {
Log.e("Status", "tried url");
myWebView.loadUrl("http://youtube.com/xxxxxxxxx");
handler.post(new Runnable() {
@Override
public void run() {
Log.e("Status", "In Run():");
}
});
} catch (Exception e) {
e.printStackTrace();
Log.e("Status", "exception");
}
}
}).start();
回答2:
You should use the YouTube Android Player API
It provides you with an efficient YouTube Player view (or even better - a Fragment) for embedding in your app that you can control programatically.