WebView Problem on Youtube site in Android?

后端 未结 3 1380
轻奢々
轻奢々 2021-01-16 03:21

i tried to load the url ww.youtube.com on my app in a webview. but it cant be load completely. it loads just like below image. in the browser it loads comfortably. why? Any

3条回答
  •  伪装坚强ぢ
    2021-01-16 04:19

    Enable JavaScript! =)

    myWebView = (WebView) findViewById(R.id.webview); 
    WebSettings webSettings = myWebView.getSettings(); 
    webSettings.setJavaScriptEnabled(true); 
    myWebView.loadUrl("http://www.youtube.com"); 
    

提交回复
热议问题