Android应用程序名称带上标
作者:互联网
如何在上标中创建应用程序名称,我尝试过这种方式:
<string name="app_name">SomeApp <sup><small><b>beta</b></small></sup></string>
它适用于TextView,但它不适用于应用程序名称.
这样的事情就是我想要完成的事情:
解决方法:
您需要使用ISO-8859-1 / UTF-8字符来完成插入(在您的情况下)上标3.
清单
HTML ISO-8859-1 Reference个实体.
例如在AndroidManifest.xml中
<application
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="Myapp³" <!--or reference it from @string -->
或者使用HTML实体³ (hex)³ (dec)字符串中的某个位置,如:
<string name="app_name">Myapp³</string>
Unicode参考表的小编译
Unicode 6.2 Character Code Charts
> C1 Controls and Latin-1 Supplement(上标所在的0080-00FF范围)
> General Punctuation
> CJK Symbols and Punctuation
> CJK Compatibility Forms
> Small Form Variants
> Halfwidth and Fullwidth Forms
(来自维基百科)
标签:android,superscript 来源: https://codeday.me/bug/20190729/1567859.html