如果我在 webview 上加载 www.youtube.com url 并选择任何视频,则不会触发带有播放器的新窗口。我应该在清单上为它设置一些东西吗?如果我使用标准浏览器工作!不会触发事件 shouldOverrideUrlLoading 或任何其他事件。谢谢
webviewA.getSettings().setJavaScriptEnabled(true);
webviewA.getSettings().setUseWideViewPort(true);
webviewA.getSettings().setLoadWithOverviewMode(true);
webviewA.getSettings().setDomStorageEnabled(true);
webviewA.getSettings().setAllowFileAccess(true);
webviewA.getSettings().setGeolocationEnabled(true);
webviewA.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
webviewA.getSettings().setBuiltInZoomControls(true);
webviewA.getSettings().setSupportZoom(true);
webviewA.getSettings().setPluginState(PluginState.ON);
webviewA.getSettings().setAllowContentAccess(true);
webviewA.setVerticalScrollBarEnabled(false);
webviewA.setHorizontalScrollBarEnabled(false);
webviewA.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
if (savedInstanceState == null){
String Url = "www.youtube.com/my-desired_channel";
webviewA.loadUrl(Url);
}
事件未触发,
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url){
not fired!!
}