I am working with android textview. I need print subscript under superscript.
This is my code:
<string name="abc">Text<sup>supertext</sup><sub>subtext</sub></string>
And this is what i get:
Textsuertextsubtext
But i need something like:
Is it possible to do that only in XML without using java?
You could use 2 text views. One with "Text" and next to it a multi line text view with "Supertext...".
However only do that if it's not strings that may ever be translated.