In my application, i have some external urls to load, for which i am using a custom webview. but the performance of this webview is very very slow. If i open the same url in native android browser, it works fine. but in the webview, it just takes a lot of time to load the page. Is there anyway that the performance of a webview can be enhanced in terms of loading a webpage time? Help is always appreciated.

link|improve this question

60% accept rate
1  
Are you testing on an emulator or on a device? – Zakaria Nov 26 '11 at 22:44
On both...Web View is slower on both as compared to native android browser. – Usama Sarwar Nov 28 '11 at 4:58
feedback

1 Answer

up vote 1 down vote accepted

Usama, WebViews will be little slower than the browser as here every activity has to have a callback to the Android app layer.

Having said that, see if you can disable javascript (if it's not used in your app) and more importantly check the caching behavior in the webview that has been set. WebSettings has some methods related to caching like - setAppCacheEnabled, setAppCacheMaxSize, setCacheMode etc.

setDatabaseEnabled, javascrpt, loadImagesAutomatically are other properties that might impact the load time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.