如何在android xml中编写代数公式

时间:2014-03-29 20:17:32

标签: android

这是一个例子

https://play.google.com/store/apps/details?id=com.entertainment.algebra_calculator_1

我只是想知道公式是如何用xml编写的,如1 / x,上标,下标。

1 个答案:

答案 0 :(得分:0)

这适用于超级脚本

TextView mTextView = (TextView) findViewById(R.id.textView);
mTextView.setText(Html.fromHtml("10<sup>3</sup>"));

对于子脚本

TextView mTextView = (TextView) findViewById(R.id.textView);
mTextView.setText(Html.fromHtml("A<sub>2</sub>"));