2012-11-27 52 views
1

我對Java和Eclipse絕對陌生。我下/ RES /佈局從兩種佈局,文件:在日食中包含拋出「找不到資源」的佈局

activity_main.xml中:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 
    <include layout="@layout/layoutTst" /> 
</LinearLayout> 

layout_test.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:id="@+id/layoutTst" 
    android:orientation="vertical" > 
</LinearLayout> 

當我試圖在 「包括」 編譯 - 第一部分得到這樣的信息:

Description Resource Path Location Type error: Error: No resource 
found that matches the given name (at 'layout' with value 
'@layout/layoutTst'). activity_main.xml /YouSherlock/res/layout line 
6 Android AAPT Problem 

那麼,怎麼了?

回答

4

您需要包含佈局文件名(layout_test .xml),而不是該佈局中根的ID。

<include layout="@layout/layout_test" /> 
+0

我知道這是一個noob問題。謝謝:) –

+0

@OleAlbers沒問題,它發生!很高興你現在工作! :) – Eric

1
@layout/layoutTst 

應該是文件不是其Android的名字:ID

@layout/layout_test 
相關問題