2010-05-22 84 views
13

這真的讓我開始瘋狂。找不到與main.xml中的名稱匹配的資源

<?xml version="1.0" encoding="utf-8"?> 
<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@id+/textview" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:text="@string/hello"/> 

產生以下錯誤信息:「Error: no resource found that matches the given name (at 'id' with value '@id+/textview')

這是副本,並從Android粘貼的hello world example

回答

8

這只是一個小錯字,你需要把「+ @'後',而不是之後 'ID':

<?xml version="1.0" encoding="utf-8"?> 
<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/textview" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:text="@string/hello"/> 
25

@+id@id+似乎教程 是錯的!

+0

很好的證明,讀谷歌! – AndroidBeginner 2010-05-22 19:09:43

+0

現在已經修復:) – Chris 2010-05-24 21:54:46

+0

我剛剛下載了SDK,仍然是buged – Moak 2010-06-11 06:27:08

相關問題