0

次のメイン アクティビティ スライダーの上に 1 つのメイン アクティビティ スライダーを実行しようとしています。

xml に Layouts 構造があり、Button View インスタンスを取得しようとした後、次のエラーが発生し、解決できません。

エラー

java.lang.ClassCastException: android.widget.Button cannot be cast to android.widget.LinearLayout

activity_home

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:id="@+id/leftView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#cad000"
        android:orientation="vertical" >
    </LinearLayout>

    <LinearLayout
        android:id="@+id/mainView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#876000"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:background="#cecece"
            android:orientation="horizontal" >

            <Button
                android:id="@+id/btnSlide"
                style="@style/btn1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="X" />
        </LinearLayout>
    </LinearLayout>

</FrameLayout>

ホームアクティビティ

Button btnSlide;
LinearLayout leftView;
LinearLayout mainView;
SliderAnimation slideAnimation;

@Override
protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_home);

    leftView = (LinearLayout) findViewById(R.id.leftView);
    mainView = (LinearLayout) findViewById(R.id.mainView);

    btnSlide = (Button) findViewById(R.id.btnSlide);
    btnSlide.setOnClickListener(this);

this.slideAnimation = new SliderAnimation(this);
    this.slideAnimation.initializeFilterAnimations(this.mainView, this.leftView);

}

前もって感謝します。

4

1 に答える 1

0

Eclipse からプロジェクトをクリーンアップしてみてください。これでおそらく問題が解決します。

プロジェクトをクリーンアップするには:

  1. プロジェクト リストからプロジェクトを選択します。

  2. 今行きますProject -> Clean...

クリーニングする単一またはすべてのプロジェクトを選択します。これにより、プロジェクトがクリーンアップされ、問題が解決されます。

于 2013-09-06T08:39:45.913 に答える