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

最後に a がありません</RelativeLayout>

また、ファイルの名前activity_qr01.xmlは であるため、次のように参照する必要があります。R.layout.activity_qr01

于 2012-09-11T08:42:39.707 に答える