20

这是我的主要活动

package com.example.mathjax_issues;

import android.os.Bundle;
import android.app.Activity;
import android.graphics.Bitmap;
import android.util.Log;
import android.view.Menu;
import android.webkit.WebResourceResponse;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class MainActivity extends Activity {


    private WebView webView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        webView=(WebView)findViewById(R.id.webView1);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.setWebViewClient(new MyWebViewClient());
        webView.loadUrl("file:///android_asset/MathJax/test/sample-asciimath.html");
//      String html="<!DOCTYPE html> <html> <head> <title>MathJax AsciiMath Test Page</title> <!-- Copyright (c) 2012-2013 The MathJax Consortium --> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /> <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> <script type=\"text/javascript\" src=\"file:///android_asset/MathJax/MathJax.js?config=AM_HTMLorMML-full\"></script> </head> <body> <p> When `a != 0`, there are two solutions to `ax^2 + bx + c = 0` and they are </p> <p style=\"text-align:center\"> `x = (-b +- sqrt(b^2-4ac))/(2a) .` </p> </body> </html> ";
//      Log.e("html",html);
//      webView.loadDataWithBaseURL("file:///android_asset/MathJax", html, "text/html","utf-8", "");
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }


    private class MyWebViewClient extends WebViewClient
    {

        @Override
        public void onPageFinished(WebView view, String url) {
            // TODO Auto-generated method stub
            super.onPageFinished(view, url);
        }

        @Override
        public void onPageStarted(WebView view, String url, Bitmap favicon) {
            // TODO Auto-generated method stub
            super.onPageStarted(view, url, favicon);
        }




    }



}

这是我的示例 asciimath.html

<!DOCTYPE html>
<html>
<head>
<title>MathJax AsciiMath Test Page</title>
<!-- Copyright (c) 2012-2013 The MathJax Consortium -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />

<script type="text/javascript" src="../MathJax.js?config=AM_HTMLorMML-full"></script>

</head>
<body>

<p>
When `a != 0`, there are two solutions to `ax^2 + bx + c = 0` and they are
</p>
<p style="text-align:center">
`x = (-b +- sqrt(b^2-4ac))/(2a) .`
</p>

</body>
</html>

下面是我的项目的图像

在此处输入图像描述

在 2.3.3,2.2,4.1.2,4.2.2 最新版本中编译此代码时

我从源代码中得到正确的输出

在此处输入图像描述

但是当我在 3.0,3.1 和 4.0.3,4.0.4 android 版本中编译相同的源代码时

我得到这样的错误输出

在此处输入图像描述

朋友请帮助我......我无法解决这个错误......我认为可能是javascript问题。希望你们给我一些想法

我在本地存储mathjax ..在资产中

提前致谢 ...

4

5 回答 5

6

我有一个类似的问题。我所做的是将所有 .js 文件复制到与 html 所在的目录相同的目录中,并将其添加如下。

<script type="text/javascript" src="MathJax.js"></script>

我知道这听起来有点愚蠢,但它奏效了。

如果这不起作用,请将 .js 文件复制到 html 文件本身中,然后像在标题中一样尝试:

<script type="text/javascript">
copy the whole MathJax.js and paste it here
</script>
于 2013-07-01T11:41:26.443 回答
2

与 html 文件相比,当脚本不在外部文件夹中时,它可以工作。

如果您从文件夹中取出 html 文件MathJax并更改 html 文件中的行,如下所示,它将起作用。

<script type="text/javascript" src="./MathJax/MathJax.js?config=AM_HTMLorMML-full"></script>

当然,将 java 文件更改为webView.loadUrl("file:///android_asset/sample-asciimath.html");

于 2013-07-02T14:39:03.493 回答
2

看来问题与此android错误有关。如果您使用 url 参数引用文件,则会发生 HTTP 404(找不到文件),在您的情况下,将找不到脚本“MathJax.js?config=AM_HTMLorMML-full”,因此不会加载。

克服 Honeycomb 和 Ice Cream Sandwich 损坏的 WebView URL

<!-- hack for honeycomb & ICS -- first script tag will not load but it's -->
<!-- needed for proper MathJax initialisation - clean solution would be to -->
<!-- pass the init data "AM_HTMLorMML-full" in some other way to MathJax -->
<script type="text/javascript" src="../MathJax.js?config=AM_HTMLorMML-full"></script>
<script type="text/javascript" src="../MathJax.js"></script>
于 2013-07-02T11:22:23.697 回答
2

有些人已经有这个问题(实际上......很多......)。

一篇文章(也是一个答案)引起了我的注意:https ://stackoverflow.com/a/7197748/1387484

在文档完全加载后,您似乎必须手动在 WebViewClient 中注入您的 Javascript 调用。我没有更多的解释,但也许你可以尝试这种方式!

于 2013-07-01T07:37:54.527 回答
0

问题是因为您必须在 html 文件中为 mathjax 设置配置(AM_HTMLorMML-full.js)(将代码复制到您的文件),并且您必须指定 MathJax.js 文件的完整路径,例如下面的代码:

    <!DOCTYPE html>
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <meta http-equiv="X-UA-Compatible" content="IE=edge">
           <script type="text/javascript" src="../MathJax/MathJax.js">
                MathJax.Hub.Config({
                    config: ["MMLorHTML.js"],
                    extensions: ["asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js"],
    jax: ["input/AsciiMath","output/HTML-CSS","output/NativeMML"]
                });
                MathJax.Ajax.loadComplete("[MathJax]/config/AM_HTMLorMML-full.js");
           </script>
    </head>
    <body>
        <p>`\sqrt{2x + 1}`</p>
    </body>
    </html>
于 2014-05-02T00:43:31.367 回答