Reputation: 6150
I am having a great deal of troubles trying to display a webpage in WebView. I am displaying
http://meteo.arso.gov.si/met/en/app/webmet/
If you open the page in browser you can see it loads the main webapp after some time (the popup about technical problems is not there except for today). I tried opening it on browser on my Android device and it loads up properly. However, as said, displaying it in the WebView doesn't load the page properly - the webpp is missing. I am guessing WebView does not handle AJAX/JS. Why and what to do?
Upvotes: 0
Views: 275
Reputation: 16043
You can enable JavaScript for you webview with: webview.getSettings().setJavaScriptEnabled(true);
and see if any difference.
If the problems persist, then most probably that page isn't optimized for mobile and there's little you can do about.
Upvotes: 1