I can't understand why findViewById returns the wrong element, here is the class:

public class EventDetailsFragment extends FragmentActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);        
        setContentView(R.layout.event_details);
        Log.d("First", findViewById(R.id.tuxtView1).getClass().toString());
        Log.d("Second", findViewById(R.id.tuxtView2).getClass().toString());
        Log.d("Third", findViewById(R.id.imageView1).getClass().toString());
    }   
}

And here is the xml:

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/green"
android:orientation="horizontal"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp">

    <RelativeLayout
    android:id="@+id/relativeLayout1"
    android:layout_width="0dp"
    android:layout_height="175dp"
    android:layout_gravity="center_horizontal"
    android:layout_weight="1"
    android:background="#fff"
    android:gravity="right" >

        <ImageView
        android:id="@+id/imageView1"
        android:layout_width="110dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:src="@drawable/ic_event_image" />

        <TextView
        android:id="@+id/tuxtView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="10dp" />      
        <TextView
        android:id="@+id/tuxtView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/tuxtView2"
        android:layout_toRightOf="@+id/imageView1"
        android:textColor="#555"
        android:textSize="20dp" />

    </RelativeLayout>

</LinearLayout>

The logcat ouput is:

12-26 23:43:20.249: D/First(6789): class android.widget.TextView
12-26 23:43:20.249: D/Second(6789): class android.widget.ImageView
12-26 23:43:20.249: D/Third(6789): class android.widget.TextView

So the point is, why do I get a imageview with id R.id.tuxtView2 and a textview with id R.id.imageView1. The application crashes if I want to assign a text value to R.id.tuxtView2, casted as a TextView.

link|improve this question

2  
Try to reload your project, maybe something wrong with R.java, or verify you are calling the good file with setContentView. – Jeremy D Dec 26 '11 at 22:55
Well documented question. Sorry, no clue why this happens. – Kris Van Bael Dec 26 '11 at 22:56
@JeremyD, wow, I was trying everything, for a couple of hours, except restarting eclipse. I restarted eclipse and it suddenly worked again. I thought I was doing something wrong in my code. Post that as an answer and I'l vote you up + mark it as solved. Thanks! – jonepatr Dec 26 '11 at 23:04
Sometimes you need to "clean" your project when Eclipse mixes up all ids in R.java – Dante Dec 26 '11 at 23:08
1  
@jonepatr yes sometimes eclipse is kind of stupid :D – Jeremy D Dec 27 '11 at 0:37
feedback

2 Answers

up vote 2 down vote accepted

Try to reload your project, maybe something wrong with R.java, or verify you are calling the good file with setContentView.

By refreshing/cleaning your project the R.java file will be reloaded and will find the named widgets.

link|improve this answer
I'll just piggyback on this answer since you're correct, but I'll add that for me deleting the contents of my /gen folder was the only way to resolve a very similar issue. – jiggy May 24 at 18:38
feedback

I copied your code and made a dummy app. I got these results:

12-27 00:03:48.332: D/First(9165): class android.widget.TextView
12-27 00:03:48.332: D/Second(9165): class android.widget.TextView
12-27 00:03:48.332: D/Third(9165): class android.widget.ImageView

Apparently there is nothing wrong with the code

link|improve this answer
Thanks, I tried everything except restarting eclipse, which turned out to be the source of the problem. Thanks for taking your time : ) – jonepatr Dec 26 '11 at 23:07
No problem. Next time you could try right clicking on your project and selecting Android Tools->Fix Project Properties OR go under Eclipse bar Project->Clean Project – RonzyFonzy Dec 26 '11 at 23:53
feedback

Your Answer

 
or
required, but never shown

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