我希望将项目标题的一部分作为上标。喜欢“²”。
我想在<menu>
属性中的drawermenu.xml(只有<item>
和android:title
标记)中执行此操作。
这是我的代码:
<item android:title="The big title">
<menu>
<item android:title="The following is a superscript"
android:id="@+id/id1"
android:icon="@drawable/icon1"/>
<item android:title="Another superscript string"
android:id="@+id/id2"
android:icon="@drawable/icon2"/>
</menu>
</item>
我尝试过:
android:title="The following is a <sup>superscript</sup>"
和:
android:title="The following is a <sup><small>superscript</small></sup>"
两者都有,我有以下错误:
Error:(9) Error parsing XML: not well-formed (invalid token)
事实上,每次我添加<sup>
或<small>
标记时,它都不起作用。
然后我试着这样:
android:title="The following is a <sup>superscript</sup>"
我没有任何错误,但它确实打印了The following is a <sup>superscript</sup>
。
如何直接在drawermenu.xml中执行此操作?