使用下面的代碼時,出現錯誤「Could not resolve resource @ id/item1」爲什麼會這樣? id/item1是在我使用它之前添加的,所以我不確定爲什麼會出現。RelativeLayout「無法解析資源...」Android
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:id="@+id/item1"
android:layout_width="50dip"
android:layout_height="50dip"
android:src="@drawable/noimage" />
<TextView
android:id="@+id/item2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Title"
android:padding="3dip"
android:textSize="20dip"
android:layout_toRightOf="@id/item1"/>
<TextView
android:id="@+id/item3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Content"
android:padding="3dip"
android:textSize="20dip"
android:layout_below="@id/item1"/>
</RelativeLayout>
我的代碼沒有這個錯誤。確保您在其他資源(佈局,值,繪圖等)中沒有錯誤。然後清理/刷新/構建項目。 – inazaruk
是的,就是這樣。我實際上必須關閉Eclipse才能消失。如果你寫作答案,我會標記爲答案。 – kieblera5
寫了一個答案) – inazaruk