我正在尝试在下一个上面执行一个主活动滑块。
我在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>
HomeActivity
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);
}
提前致谢。
答案 0 :(得分:0)
尝试从eclipse中清除项目。这可能会解决您的问题。
清理项目:
从项目列表中选择项目。
- 醇>
现在转到
Project -> Clean...
选择要清理的单个或所有项目。这将清理您的项目并解决您的问题。