我从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;使用
答案 0 :(得分:0)
您可以使用 Android.text.Spanned 在textView中呈现它
Spanned htmlAsSpanned = Html.fromHtml(yourString);
textView.setText(htmlAsSpanned);
希望这有帮助!