1

is there any way to add superscript text in android:label under Application tag? I need to display name like : Myandroid

2 Answers2

3

Refer this link

Subscript and Superscript a String in Android

((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup>2</sup>"));
Community
  • 1
  • 1
Nirali
  • 13,013
  • 6
  • 38
  • 52
1

try using Html.fromHtml as:

TextView txt=(TextView)findViewById(R.id.texta);
txt.setText(Html.fromHtml("My<sup>android</sup>"));
ρяσѕρєя K
  • 130,641
  • 51
  • 193
  • 212