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

后端 未结 5 1494
故里飘歌
故里飘歌 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:45

    I guess, you are using iframe tag in your html code. Change it with object tag. I mean, you must use object instead iframe. An example here:

       
    
    
    
    

    Use the code below:

    webview.getSettings().setPluginsEnabled(true);
    webview.getSettings().setJavaScriptEnabled(true);
    webview.getSettings().setAllowFileAccess(true);
    webview.loadUrl(url);
    

    Try this and thick it as accepted if your problem solved :)

提交回复
热议问题