如何将代数表达式显示为String?

时间:2017-01-04 18:39:01

标签: android android-studio

如何在android中以变量和索引显示一些微积分?甚至只是一些简单的激进标志?

2 个答案:

答案 0 :(得分:1)

Android中的

TextView支持UTF-8,因此您可以使用非典型字符:≠,÷,=,Σ,ε等。

此处的完整列表:http://en.wikipedia.org/wiki/List_of_mathematical_symbols

答案 1 :(得分:0)

您可以使用 unicodes

您可以从此link

获取unicodes列表 例如,

如果您想使用Σ,请使用

android:text="/u2211"

xml中的

属性

textView.setText("/u2211")

您也可以在HTML中使用

X ^ 2

.setText(Html.fromHtml("X<sup>2</sup>"));