Youtube embed videos not working in webview. What's wrong with this code?

后端 未结 5 1458
故里飘歌
故里飘歌 2021-02-03 11:47

I am new to android. I am facing two problems right now 1. I parsed xml file and showed it in webview which contains videos and text . When i click on videos

5条回答
  •  悲&欢浪女
    2021-02-03 12:26

    This does it:

    myWebView.getSettings().setPluginState(PluginState.ON);
            myWebView.getSettings().setJavaScriptEnabled(true);
            myWebView.getSettings().setAllowFileAccess(true);
            myWebView.setWebChromeClient(new WebChromeClient());
    

    And enable hardware acceleration too!

提交回复
热议问题