코딩 연습장/오류!

오류일기 -5-

Do아 2021. 3. 16. 09:18
728x90

2020.12.18(금)

앱 개발하고 있는 도중 발생한 오류!

E/AndroidRuntime: FATAL EXCEPTION: main

java.lang.ClassCastException: androidx.appcompat.widget.AppCompatImageButton cannot be cast to android.widget.Button

이런 오류가 발생했는데 읽어 보니 버튼에서 난 오류..

해당 위치로 가서 보니까

이미지 버튼인데 그냥 버튼 형식으로 선언해줘서 발생한 오류였다..

private Button myButton; --------> private ImageButton myButton;

이렇게 다시 수정해줘서 오류 제거!

728x90

'코딩 연습장 > 오류!' 카테고리의 다른 글

오류일기-7-  (0) 2021.03.18
오류일기 -6-  (0) 2021.03.18
오류일기 -4-  (0) 2021.03.16
오류 일기 -3-  (0) 2021.03.16
오류 일기 -2-  (0) 2021.03.16