在我的XML中取代我的菜单项标题

时间:2016-05-05 16:14:30

标签: android xml android-studio navigation-drawer

我希望将项目标题的一部分作为上标。喜欢“²”。

我想在<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 &lt;sup&gt;superscript&lt;/sup&gt;"

我没有任何错误,但它确实打印了The following is a <sup>superscript</sup>

如何直接在drawermenu.xml中执行此操作?

0 个答案:

没有答案