Play a youtube url in android

2019-02-27 23:27发布

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?

2条回答
对你真心纯属浪费
2楼-- · 2019-02-27 23:44

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();
查看更多
老娘就宠你
3楼-- · 2019-02-27 23:50

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.

查看更多
登录 后发表回答