这是一个例子
https://play.google.com/store/apps/details?id=com.entertainment.algebra_calculator_1
我只是想知道公式是如何用xml编写的,如1 / x,上标,下标。
答案 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>"));