eclipse无法识别我的布局文件夹

时间:2012-09-11 08:34:38

标签: android xml eclipse android-layout

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>

2 个答案:

答案 0 :(得分:2)

您的XML文件位于res/menu文件夹中,它应位于res/layout文件夹中。

答案 1 :(得分:0)

你最后错过了</RelativeLayout>

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