I am trying to display math formulae in Android's webview. I ve written the code in a separate html file and using the following code to display the formulae:

String data =inputStreamToString1();
myWebView.loadData(data, "text/html", "utf-8");

I've placed the following lines in the html file to load mathJAX dynamically:

<script type="text/javascript"
   src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>

The problem is when I run the app in emulator(Android version 2.2) mathJAX is not loading up. However in my phone (Android version 2.1), mathJAX loads correctly.

Can anyone tell me the reason for this problem?

Also when the webview opens in the emulator, I get the following warning:

"webcore Not supported in this case"

Does this warning have anything to do with not loading mathJAX?

link|improve this question
First you can try local copy of MathJax. Second, try different configurations. – artyom.stv Jan 26 at 11:44
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.