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>
答案 0 :(得分:2)
您的XML文件位于res/menu
文件夹中,它应位于res/layout
文件夹中。
答案 1 :(得分:0)
你最后错过了</RelativeLayout>
。
此外,您的文件名为activity_qr01.xml
,因此您必须将其引用为R.layout.activity_qr01