0

我正在尝试在下一个上做一个主要活动滑块。

我在 xml 中有 Layouts 结构,在我尝试获取 Button View 实例之后,但我得到下一个错误并且不知道解决它。

错误

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

活动主页

<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 回答