有什么方法可以在应用程序标签下的 android:label 中添加上标文本?我需要显示名称,例如:我的android
问问题
1430 次
2 回答
3
参考这个链接
((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup>2</sup>"));
于 2012-06-29T06:53:43.287 回答
1
尝试使用Html.fromHtml作为:
TextView txt=(TextView)findViewById(R.id.texta);
txt.setText(Html.fromHtml("My<sup>android</sup>"));
于 2012-06-29T06:55:14.807 回答