How can I make the application name in superscript, I've tried this way:
<string name="app_name">SomeApp <sup><small><b>beta</b></small></sup></string>
it works on TextView's but it doesn't work on the application name.
Something like this is what I'm trying to accomplish:
You need to use ISO-8859-1 / UTF-8 characters to accomplish inserting (in your case) a superscript 3.
List of HTML ISO-8859-1 Reference entities.
For example in your AndroidManifest.xml
<application
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="Myapp³" <!--or reference it from @string -->
Or use the HTML entity ³
(hex) ³
(dec) somewhere in a String, like:
<string name="app_name">Myapp³</string>
Unicode 6.2 Character Code Charts
(from wikipedia)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With