Webview Not Loading Html Or Javascript Android
I am retrieving the whole html and javascript of a page I get from an HttpGet. I can successfully get the Html and the Javascript. When I try and load it into the web view, the web
Solution 1:
Try to load WebView using following method
mWebView.loadDataWithBaseURL(null, htmlString,"text/html", "utf-8", null);
Post a Comment for "Webview Not Loading Html Or Javascript Android"