次のメイン アクティビティ スライダーの上に 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);
}
前もって感謝します。