标签: android webview
我正在尝试在WebView中加载URL。该网址采用https://<host>/<page>.html格式。加载所需的最短时间是1秒(Callbacks onLoadResource()和onPageFinished()之间的时差)。可以进一步减少。该页面没有图像。
https://<host>/<page>.html
答案 0 :(得分:0)
您可以使用此
viewer.getSettings().setCacheMode(WebSettings.LOAD_DEFAULT)
OR
details.getSettings().setAppCacheEnabled(true);
也可以像这样使用更高的优先级
webview.getSettings().setRenderPriority(RenderPriority.HIGH);
阅读doc,此link1,link2,link3也可能有所帮助