Anybody has some suggestions to make a webview faster to load the url?
In my situation, I am using the jQuery's getScript to load the javascript(s) when needed.
Thanks, Sana.
Anybody has some suggestions to make a webview faster to load the url?
In my situation, I am using the jQuery's getScript to load the javascript(s) when needed.
Thanks, Sana.
I found this online, it worked for me. Note: Only works for Android API 18+.
if (Build.VERSION.SDK_INT < 18) {
//speed webview
webView.getSettings().setRenderPriority(WebSettings.RenderPriority.HIGH);
}