0

我正在尝试为我的 android 应用程序制作一个简单的菜单。但不知道为什么我的 menu.xml 文件中出现以下错误:

[2012-07-21 11:53:27 - Torchit] W/ResourceType( 5469): Bad XML block: header size 46936 or total size 163847776 is larger than data size 0
[2012-07-21 11:53:27 - Torchit] /home/tigerstyle/workspace/Torchit/res/menu/menu.xml:2: error: Error: No resource found that matches the given name (at 'id' with value '@id/menu_item_about').

menu.xml 代码如下:

<menu xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:id="@id/menu_item_about"
      android:title="About"
      android:icon="@drawable/menu_about" />
</menu>
4

1 回答 1

6

您需要像这样在“@”之后添加一个“+”

<menu xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:id="@+id/menu_item_about"
      android:title="About"
      android:icon="@drawable/menu_about" />
</menu>

没有它,它会查找已经使用该 ID 定义的资源。

于 2012-07-21T06:33:48.153 回答