Android webview +javascript 在 android 4.0.x,3.x 中不显示输出

2022-09-02 10:48:48

这是我的主要活动

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>

下面是我的项目的图像

enter image description here

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

我从源获得正确的输出

enter image description here

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

我得到了像这样的错误输出

enter image description here

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

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

提前致谢...


答案 1

我遇到了类似的问题。我所做的是将所有.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>

答案 2

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

一个帖子(还有一个答案)引起了我的注意:https://stackoverflow.com/a/7197748/1387484

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