is there any way to add superscript text in android:label under Application tag? I need to display name like : Myandroid
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Refer this link
Subscript and Superscript a String in Android
((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup>2</sup>"));
回答2:
try using Html.fromHtml as:
TextView txt=(TextView)findViewById(R.id.texta);
txt.setText(Html.fromHtml("My<sup>android</sup>"));