android – MENU中不允许使用元素ITEM

前端之家收集整理的这篇文章主要介绍了android – MENU中不允许使用元素ITEM前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试制作自定义选项菜单.使用此代码后,我得到:此处不允许使用元素项

码:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent">
    <item android:id="@+id/morsoid_settings"
          android:icon="@drawable/ic_new_game"
          android:title="@string/new_game" />
    <item android:id="@+id/morsoid_close"
          android:icon="@drawable/ic_help"
          android:title="@string/help" />
</menu>

灵感来自:Android dev guide

解决方法

我不知道它是否有所作为,但你是否将菜单放在res / menu中而不是res / layout中?
原文链接:https://www.f2er.com/android/313812.html

猜你在找的Android相关文章