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

I'm reworking my application, setting some animations. Now basically my Activities are composed

<LinearLayout>
    <LinearLayout>
        <!-- THE HEADER AND A BUTTON -->
    </LinearLayout>
    <View>
        <!-- A SEPARATION LINE -->
    </View>
    <ScrollView>
        <!-- THE CONTENT -->
    </ScrollView>
</LinearLayout>

The animation is always set that the header + the line are pushed in from left, after that the content is pushed in from the button. Now in a specific Activity I saw that the line View was put into the ScrollView (there's a RelativeLayout in there, since the ScrollView can have only one child).

When I first set the animation (with the line at the wrong place, everything worked):

private void animateHeaderAndContent(){
    LinearLayout header = (LinearLayout) findViewById(R.id.overview_lin_0);
    header.setAnimation(AnimationUtils.loadAnimation(this, R.anim.push_left_in_header));
    ScrollView content = (ScrollView) findViewById(R.id.sv_overview_content);
    content.setAnimation(AnimationUtils.loadAnimation(this, R.anim.push_up_in_content));
}

in xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent" 
        android:layout_height="match_parent"
        android:orientation="vertical" 
        >
        <LinearLayout 
            android:id="@+id/overview_lin_0"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            >
            (...)
        </LinearLayout>

        <ScrollView android:id="@+id/sv_overview_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            >
            <RelativeLayout 
                android:id="@+id/rel_over" 
                android:orientation="vertical"
                android:layout_width="match_parent" 
                android:layout_height="wrap_content"        
                >
                 <View   
                    android:id="@+id/v_overview_line1"
                    android:layout_height="1dp"
                    android:layout_width="match_parent"
                    android:layout_marginBottom="10dp"
                    android:background="#FFFFFF"
                    />

                (...)

As I edited the code and the xml like following, it gives me a ClassCastException at line ScrollView content = (ScrollView) findViewById(R.id.sv_overview_content);, which is exactly the same as before.

in code:

private void animateHeaderAndContent(){
    LinearLayout header = (LinearLayout) findViewById(R.id.overview_lin_0);
    header.setAnimation(AnimationUtils.loadAnimation(this, R.anim.push_left_in_header));
    View line = (View) findViewById(R.id.v_overview_line1);
    line.setAnimation(AnimationUtils.loadAnimation(this, R.anim.push_left_in_header));
    ScrollView content = (ScrollView) findViewById(R.id.sv_overview_content);
    content.setAnimation(AnimationUtils.loadAnimation(this, R.anim.push_up_in_content));
}

in xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" 
    android:layout_height="match_parent"
    android:orientation="vertical" 
    >
    <LinearLayout 
        android:id="@+id/overview_lin_0"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <View 
            android:layout_width="25dp"
            android:layout_height="0dp"
            />
        <TextView 
            style="@style/TextHeader"
            android:id="@+id/tv_overview_name"
            android:layout_width="0dp"
            android:layout_weight="8"
            android:gravity="center"
            android:layout_height="wrap_content"
            />
        <ImageButton style="@style/ImageButtonSmall"
            android:layout_width="26dp"
            android:layout_height="26dp" 
            android:src="@drawable/ic_action_delete"
            android:contentDescription="@string/desc"
            android:onClick="onClickDeleteBet"
            />
    </LinearLayout>

    <View   
        android:id="@+id/v_overview_line1"
        android:layout_height="1dp"
        android:layout_width="match_parent"
        android:layout_marginBottom="10dp"
        android:background="#FFFFFF"
        />

    <ScrollView 
        android:id="@+id/sv_overview_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >
        <RelativeLayout 
            android:id="@+id/rel_over" 
            android:orientation="vertical"
            android:layout_width="match_parent" 
            android:layout_height="wrap_content"        
            >
            (...)

How can this be explained (since it is the exaclty same operation in both cases, except that there's a View in between that should not interfer with a findViewById(...) )?

share|improve this question
once simply build the project and clean it. It may help you – G_S Oct 27 '12 at 15:56

1 Answer

up vote 1 down vote accepted

Probably the references in the R class are not updated correctly. This sometimes happens. Destroy the generated R file in eclipse (under the folder gen). Then immediately restart eclipse. Next, select the project and click Project --> Clean... Then build your application again and the R class will be regenerated.

I hope this helps.

share|improve this answer
1  
cleaning/rebuilding should do the trick without restarting. IF the R file was the origin of the problem. – NikkyD Oct 27 '12 at 18:12
True, but I have heard people say that it didn't work for them that way, while in the end the R file was the origin of the problem. So just to be sure :) – MarchingHome Oct 27 '12 at 23:23

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.