Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Webview slow to load

Tags:

android

I have a webview followed by 3 buttons. The text that fills the webview and the text for each button is pulled from an sqlite db then each view is set. When the intent opens the buttons are set but the webview is empty then loads a split second later.

Is there something I can do to change this?

like image 283
Somk Avatar asked Nov 14 '22 22:11

Somk


1 Answers

There are other questions that ask similar questions, this was taken from them:

webview.getSettings().setRenderPriority(RenderPriority.HIGH);
webview.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);

Adding this android:hardwareAccelerated="true" in the manifest was the only thing that significantly improved the performance for me

like image 95
ajacian81 Avatar answered Dec 19 '22 10:12

ajacian81