I have an html file that displays an equation. The html file uses this library ( http://mathscribe.com/author/jqmath.html ). In a web browser everything works fine. The problem is when i load that html file into my webview in my app. the actual html command in the body does not convert into an equation like it did in the web browser. What is the problem here?
I placed the html file and the jquery library in the assets folder in my app. The command to load the html file is:
mWebView.loadUrl("file:///android_asset/quadratic.html");
Try enabling
Javascriptin theWebViewsomeWebView.getSettings().setJavaScriptEnabled(true);and let us know if it works 🙂