数学公式格式未出现在 android mathView 中
math formula format doesn't appear in android mathView
我想在我的 android 应用程序中显示数学公式 我使用 tiny_mce 和 WIRIS 插件编写公式,如下图所示
编辑器将公式存储在数据库中,格式如下
<p><math xmlns="http://www.w3.org/1998/Math/MathML"><mroot><mrow><mn>3</mn>
<mi>x</mi></mrow><mn>2</mn></mroot><mo>×</mo><mn>2</mn>
<mimathvariant="normal">π</mi></math></p>
我也在我的 android 应用程序中使用 MathView 来显示如下公式
MathView testMathView=(MathView) findViewById(R.id.test);
testMathView.setText("<p><math xmlns=\"http://www.w3.org/1998/Math/MathML\">" +
"<mroot><mrow><mn>3</mn><mi>x</mi></mrow><mn>2</mn></mroot>" +
"<mo>×</mo><mn>2</mn><mi mathvariant=\"normal\">π</mi></math></p>");
但它不起作用,它显示了唯一没有数学公式符号的数字
这里是 MathView 的 GitHub 库和教程,它不适用于 wiris 编辑器的输出
MathView on github
能否请您提供任何帮助或建议以在 android 应用程序中显示 wiris 输出格式?
正如我在您链接的 GitHub 上阅读的文档,您应该在 MathView
和 setText
中设置 auto:engine="MathJax"
,如下所示:
testMathView.setText("$$<p><math xmlns=\"http://www.w3.org/1998/Math/MathML\">" +
"<mroot><mrow><mn>3</mn><mi>x</mi></mrow><mn>2</mn></mroot>" +
"<mo>×</mo><mn>2</mn><mi mathvariant=\"normal\">π</mi></math></p>$$");
希望这会奏效。
我想在我的 android 应用程序中显示数学公式 我使用 tiny_mce 和 WIRIS 插件编写公式,如下图所示
编辑器将公式存储在数据库中,格式如下
<p><math xmlns="http://www.w3.org/1998/Math/MathML"><mroot><mrow><mn>3</mn>
<mi>x</mi></mrow><mn>2</mn></mroot><mo>×</mo><mn>2</mn>
<mimathvariant="normal">π</mi></math></p>
我也在我的 android 应用程序中使用 MathView 来显示如下公式
MathView testMathView=(MathView) findViewById(R.id.test);
testMathView.setText("<p><math xmlns=\"http://www.w3.org/1998/Math/MathML\">" +
"<mroot><mrow><mn>3</mn><mi>x</mi></mrow><mn>2</mn></mroot>" +
"<mo>×</mo><mn>2</mn><mi mathvariant=\"normal\">π</mi></math></p>");
但它不起作用,它显示了唯一没有数学公式符号的数字
这里是 MathView 的 GitHub 库和教程,它不适用于 wiris 编辑器的输出 MathView on github
能否请您提供任何帮助或建议以在 android 应用程序中显示 wiris 输出格式?
正如我在您链接的 GitHub 上阅读的文档,您应该在 MathView
和 setText
中设置 auto:engine="MathJax"
,如下所示:
testMathView.setText("$$<p><math xmlns=\"http://www.w3.org/1998/Math/MathML\">" +
"<mroot><mrow><mn>3</mn><mi>x</mi></mrow><mn>2</mn></mroot>" +
"<mo>×</mo><mn>2</mn><mi mathvariant=\"normal\">π</mi></math></p>$$");
希望这会奏效。