0

我在 eclipse 中有一个错误:

根元素之后的文档中的标记必须格式正确,并且在包 'android' 中找不到属性 'layout_width' 的资源标识符

这个错误在activy_main.xml. 所有代码来自activy_main.xml

4

1 回答 1

0

问题出在您的相对布局上,您在其中提供了一个按钮的 id,然后将其关闭...只需将其而不是您之前的相对布局,并告诉我它是否有效

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#000000">
于 2012-11-16T19:25:07.993 回答