我正在尝试在下一个上做一个主要活动滑块。
我在 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);
}
提前致谢。