带有上标文本的应用程序名称 android
App name with superscript text android
我想用超级脚本命名我的 android 应用程序
像(UNO™)。如您所见,tm 更小且更靠前。
我用了Html.fromHtml(X +"<sup><font style=\"font-size:1;\">TM</font ></sup>"));
同样在 strings.xml 我使用了 <string name="app_name"> X<sup><font style="font-size:1;">TM</font></sup> </string>
同样无效。我该怎么做?
您需要改用 unicode 符号 Trademark。
<string name="app_name"> Your name ™</string>
其中 ™
是 ™
我想用超级脚本命名我的 android 应用程序 像(UNO™)。如您所见,tm 更小且更靠前。
我用了Html.fromHtml(X +"<sup><font style=\"font-size:1;\">TM</font ></sup>"));
同样在 strings.xml 我使用了 <string name="app_name"> X<sup><font style="font-size:1;">TM</font></sup> </string>
同样无效。我该怎么做?
您需要改用 unicode 符号 Trademark。
<string name="app_name"> Your name ™</string>
其中 ™
是 ™