Iframe not loading in webview android

前端 未结 5 443
终归单人心
终归单人心 2021-01-01 00:34

I have a webview. Everything is working fine but when I am opening a page which has iframe, the iframe is not getting visible. Are there any specific settings required?

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-01 00:45

    This maybe a too late answer! I hope it will help someone.

    Just try to set up a desktop user agent to your webview

    String DESKTOP_USER_AGENT = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36";
    webView.getSettings().setUserAgentString(DESKTOP_USER_AGENT);
    

提交回复
热议问题