将MathML转换为可以在接收HTML标记内的MathML字符串时放入TextView或WebView的内容

时间:2017-05-02 11:22:01

标签: android mathml

我从Web服务收到这样的字符串:

<p><span class="equation">(x = {-b pm sqrt{b^2-4ac} over 2a})</span><span class="equation">(x = {-b pm sqrt{b^2-4ac} over 2a})</span></p></br>

我想在TextView或WebView中显示。它包含MathML,我希望以适当的形式进行转换。

我在网上看到MathML可以转换为图像形式&amp;使用

1 个答案:

答案 0 :(得分:0)

您可以使用 Android.text.Spanned 在textView中呈现它

Spanned htmlAsSpanned = Html.fromHtml(yourString);
textView.setText(htmlAsSpanned);
希望这有帮助!