我正在尝试使用jsMath在Android应用程序中显示方程式。
我首先将jsMath下载到我的assets文件夹。接下来,我使用以下文本创建了一个简单的index.html:
<!doctype html>
<html>
<head>
<script src="jsMath\easy\load.js"></script>
</head>
<body>
<center>
Some inline math: $\sqrt{1-x^2}$ or \(ax^2+bx+c\)
</center>
</body>
</html>
在我的Android应用程序中,我使用WebView显示此页面。
WebView wView = (WebView)rootView.findViewById(R.id.webView);
wView.getSettings().setJavaScriptEnabled(true);
wView.loadUrl("file:///android_asset/index.html");
不幸的是,Android中的WebView会逐字显示文本,而不是我期望的格式化方程式。我在这里错过了什么或做错了什么?
答案 0 :(得分:0)
我想你想要:
<script src="file:///android_asset/jsMath/easy/load.js"></script>