ボタンを使用するとアプリが動作しますが、イメージ ボタンを使用しようとすると、「アクティビティを開始できません.......ClassCastException: android:widget:button.
私はそのようにJavaファイルにIDでボタンを設定しました
btn=(ボタン)findViewById(R.id.button);
これがxmlのImageButtonです
<ImageButton
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world"
android:adjustViewBounds="true"
android:src="@drawable/ball"
android:scaleType="centerCrop"/>
プロジェクトのクリーニングを試みましたが、成功しませんでした。何が足りないの??
ヘルプ!
前もって感謝します
ドン