user1490409
user1490409

Reputation: 11

How to add superscript text in android:label?

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

Upvotes: 1

Views: 1463

Answers (2)

ρяσѕρєя K
ρяσѕρєя K

Reputation: 132992

try using Html.fromHtml as:

TextView txt=(TextView)findViewById(R.id.texta);
txt.setText(Html.fromHtml("My<sup>android</sup>"));

Upvotes: 1

Nirali
Nirali

Reputation: 13825

Refer this link

Subscript and Superscript a String in Android

((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup>2</sup>"));

Upvotes: 3

Related Questions