美文网首页
H5 webApp 被Android webView加载时提示

H5 webApp 被Android webView加载时提示

作者: 不会吃鱼的小猫 | 来源:发表于2017-12-08 18:00 被阅读0次

    解决办法

    webView.getSettings().setDomStorageEnabled(true);
    webView.getSettings().setAppCacheMaxSize(1024*1024*8);
    String appCachePath = getApplicationContext().getCacheDir().getAbsolutePath();
    webView.getSettings().setAppCachePath(appCachePath);
    webView.getSettings().setAllowFileAccess(true);
    webView.getSettings().setAppCacheEnabled(true);
    

    相关文章

      网友评论

          本文标题:H5 webApp 被Android webView加载时提示

          本文链接:https://www.haomeiwen.com/subject/krqyixtx.html