코린이 탈출기
[에러 해결] The style on this component requires your app theme to be Theme.MaterialComponents (or a descendant). 본문
안드로이드/에러
[에러 해결] The style on this component requires your app theme to be Theme.MaterialComponents (or a descendant).
50HEE 2022. 4. 10. 14:49java.lang.RuntimeException: Unable to start activity ComponentInfo{에러 발생한 곳}: java.lang.IllegalArgumentException: The style on this component requires your app theme to be Theme.MaterialComponents (or a descendant).
'chipGroup'을 사용하다 발생한 에러입니다.
위와 같이 theme에서 문제가 발생한 것을 알 수 있습니다.
기존의 theme의 경우에는 "Theme.AppCompat.Light.DarkActionBar"입니다.

하지만 chipGroup을 사용하는 부분을 보면 <com.google.android.material.chip.ChipGroup>으로 된 것을 볼 수 있습니다.

그래서 theme 부분을 "Theme.MaterialComponents.Light.DarkActionBar"수정해주면 에러가 발생하지 않습니다.

Comments