作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Android 应用程序中显示一些数学方程,但我不确定如何使用 JqMath 来显示这些方程。有人可以逐步告诉我如何在 Android 应用程序上显示一些简单的方程吗?我尝试过以下方法:
mEquationWebView = (WebView)v.findViewById(R.id.equation_webView);
WebSettings mWebSettings = mEquationWebView.getSettings();
mWebSettings.setJavaScriptEnabled(true);
String path="file:///android_asset/";
String js = "<html><head>"
+ "<link rel='stylesheet' href='file:///android_asset/mathscribe/jqmath-0.4.0.css'>"
+ "<script src = 'file:///android_asset/mathscribe/jquery-1.4.3.min.js'></script>"
+ "<script src = 'file:///android_asset/mathscribe/jqmath-etc-0.4.2.min.js'></script>"
+ "</head><body>"
+ "<script>var s = '$$x={-b±√{b^2-4ac}}/{2a}$$';M.parseMath(s);document.write(s);</script> </body>";
mEquationWebView.loadDataWithBaseURL("",js,"text/html", "UTF-8", "");
并出现以下错误:无法打开资源 URL:file:///android_asset/mathscribe/jqmath-0.4.0.css无法打开资源 URL:file:///android_asset/mathscribe/jqmath-etc-0.4.2.min.js无法打开资源 URL:file:///android_asset/mathscribe/jquery-1.4.3.min.js
我认为问题可能是我需要将一些 jqMath 文件下载到我的 Android Assets 文件夹中,但我不确定在哪里可以找到这些文件。
最佳答案
如果您还没有这些文件,请转到http://mathscribe.com/author/jqmath.html然后单击该页面中间的“下载 jqMath”链接,将 jqMath 下载到您的计算机。然后,您需要将正确的文件放入 Assets 文件夹中。
此外,M.parseMath() 只能应用于 DOM 中的节点,而不是字符串变量。您的 M.parseMath(s);
调用此处是无操作(不执行任何操作)。
您可以替换整行:
+ "<script>var s = '$$x={-b±√{b^2-4ac}}/{2a}$$';M.parseMath(s);document.write(s);</script> </body>";
只有:
+ "$$x={-b±√{b^2-4ac}}/{2a}$$</body></html>";
关于java - 如何在 Android 上安装 JqMath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30263725/
我是一名优秀的程序员,十分优秀!