我剛剛添加了一個webview到我的應用程序來加載一個帶有視頻的簡單文章和一些文本。 文本顯示爲應該顯示,但它就好像視頻甚至不是一個不可見的元素。Youtube視頻不會顯示在WebView中
WebView browser = (WebView) findViewById(R.id.webArticle);
browser.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
WebSettings settings = browser.getSettings();
settings.setBlockNetworkLoads(false);
settings.setBlockNetworkImage(false);
settings.setAllowContentAccess(true);
settings.setLoadsImagesAutomatically(true);
settings.setAllowFileAccess(true);
settings.setJavaScriptEnabled(true);
settings.setJavaScriptCanOpenWindowsAutomatically(true);
browser.loadUrl(url);
讓我反饋 –