我是Android编程的新手,我想让我们jqMath在WebView中显示一些数学公式。
这是我的代码:
WebView webView = (WebView)findViewById(R.id.webView1);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
String js = "<html><head>"
+ "<link rel='stylesheet' href='jqmath-0.4.0.css'>"
+ "<script src='jquery-1.4.3.min.js'></script>"
+ "<script src='jqmath-etc-0.4.0.min.js'></script>"
+ "</head><body>"
+ "<script>var s = '$ax^2+bx+c=0$ with $a≠0$';M.parseMath(s);document.write(s);</script></body>";
webView.loadData(js, "text/html", "UTF-8");
此代码有什么问题?
更新 好吧我的问题已经解决了,但我也将loadData函数更改为loadDataWithBaseURL 如果其他人有同样的问题,我只提供参考
答案 0 :(得分:6)
您需要为css,js文件正确指定路径,如下所示:
WebView webView = (WebView)findViewById(R.id.webView1);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
String path="file:///android_asset/";
String js = "<html><head>"
+ "<link rel='stylesheet' href='"+path+"jqmath-0.4.0.css'>"
+ "<script src='"+path+"jquery-1.4.3.min.js'></script>"
+ "<script src='"+path+"jqmath-etc-0.4.0.min.js'></script>"
+ "</head><body>"
+ "<script>var s = '$ax^2+bx+c=0$ with $a≠0$';M.parseMath(s);document.write(s);</script></body>";
webView.loadData(js, "text/html", "UTF-8");
请注意,这些文件应位于资源文件夹中。
答案 1 :(得分:1)
资产文件夹中js lib的位置与您的src声明不匹配
答案 2 :(得分:0)
在指定Khalid之类的路径后,以下内容对我有用
webView.loadDataWithBaseURL( "file:///android_asset/" ,js, "text/html", "UTF-8", null);
而不是webView.loadData
方法。