I am on making a widget layout, I need to display superscript
type thing like , like
PM
displaying in this picture, I am thinking if there is any tool which acts like superscript. Will appreciate your help.
Asked
Active
Viewed 421 times
0

Muaz Usmani
- 1,298
- 6
- 26
- 48
1 Answers
2
You want to use Html#fromHtml and use the HTML < sup > tag.
Here is what it will look like if you set the text in a TextView
in java:
textView.setText("3:36" + Html.fromHtml("<sup>PM</sup>"));
More info can be found on this SO Post: Subscript and Superscript a String in Android

Community
- 1
- 1

Salil Pandit
- 1,498
- 10
- 13
-
I tried this its not making superscript, is it because of small text size ? – umesh May 03 '14 at 11:34