1

为什么我不能在 TextView 上放“x⁵”,但可以放“x⁴”?

<string name="secante_instru">Enter the following polynomial coefficients \n Ax⁵ + Bx⁴ + Cx³ + Dx² + Ex + F</string>
4

3 回答 3

0

这有帮助吗?

http://en.wikipedia.org/wiki/Unicode_subscripts_and_superscripts

你可以直接使用unicode。

例子:

\u2075
于 2013-04-09T06:14:13.593 回答
0

5 - 存在,但不可见。它只是占用空间。可能是字体的错误。尝试使用另一个。如何设置自定义字体希望对您有所帮助。

更新

试试这个:

yourTextView.setText(Html.fromHtml("x<sup>5</sup>"));
于 2013-04-09T06:17:37.923 回答
0

您是否尝试过用双引号括起来。

于 2013-04-09T06:39:37.720 回答