有没有办法在Application标签下的android:label中添加上标文本? 我需要显示如下名称: 我机器人
答案 0 :(得分:3)
参考此链接
Subscript and Superscript a String in Android
((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup>2</sup>"));
答案 1 :(得分:1)
尝试使用Html.fromHtml作为:
TextView txt=(TextView)findViewById(R.id.texta);
txt.setText(Html.fromHtml("My<sup>android</sup>"));