How to improve webview load time

前端 未结 4 616
星月不相逢
星月不相逢 2021-01-01 18:59

I have a URL which I can load in webview. If I open the webview through browser it takes less time, but if I load the URL in webview it takes more time. Also if I have to re

4条回答
  •  失恋的感觉
    2021-01-01 19:23

    set render priority high for your web view can solve problem up to some extent its some thing like this

    webview.getSettings().setRenderPriority(RenderPriority.HIGH);
    

提交回复
热议问题