0

eclipse 无法识别我的布局文件夹,我的布局无法被引用

R.layout.activity_qr01

并且错误说:我的布局无法解析或不是字段

activity_qr01 的代码是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world"
    tools:context=".QR01" />
    </RelativeLayout>

4

2 回答 2

2

您的 XML 文件在res/menu文件夹中,它应该在res/layout文件夹中。

于 2012-09-11T08:37:41.920 回答
0

</RelativeLayout>最后错过了一个。

此外,您的文件名为activity_qr01.xml,因此您必须将其引用为R.layout.activity_qr01

于 2012-09-11T08:42:39.707 回答