WebView Rendering Issue in Android KitKat

后端 未结 5 1721
终归单人心
终归单人心 2020-11-30 00:01

I\'ve been working on an application which have a WebView in which a static page get loaded from the assets (Also using JavaScript). This WebView is not working in KitKat, i

5条回答
  •  半阙折子戏
    2020-11-30 00:22

    I ran into the same issue, but I did find a workaround. All you have to do is explicitly set a CSS background for your webpage. Like so:

    body {
      background: white;
    }
    

    As it turns out if you do not explicitly set a background for a webpage the WebView will fail to draw said background and you'll end up with a transparent WebView.

提交回复
热议问题