Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using the below code, I get an error "Couldn't resolve resource @id/item1" Why is this? id/item1 is added before I use it, so I'm not sure why this is coming up.

<?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>
share|improve this question
1  
I don't have this error with your code. Make sure you don't have errors in other resources (layouts, values, drawables, etc.). And then clean/refresh/build the project. – inazaruk Dec 5 '11 at 19:35
Yeah, that's all it was. I actually had to close Eclipse for it to go away. If you write as an answer, I'll mark as answer. – kieblera5 Dec 5 '11 at 19:41
Wrote an answer) – inazaruk Dec 5 '11 at 22:44

1 Answer

up vote 12 down vote accepted

I don't have this error with your code.

Make sure you don't have errors in other resources (layouts, values, drawables, etc.). And then clean/refresh/build the project

share|improve this answer
5  
I had the same error and was able to fix it by restarting eclipse (cleaning didn't help). Although for me the graphical relative layout editor crashed while I was dragging stuff around. – Jason Axelson Mar 19 '12 at 7:05
4  
when in doubt... restart eclipse. the answer to probably half of my android-related problems -_- – Alex Lockwood Mar 25 '12 at 1:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.