본문 바로가기
App/Android

[2021.11.23] How to solve Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity?

by injekim97 2021. 11. 23.
반응형

[2021.11.23] How to solve Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity?

 

 

 

 

 

이번 게시글은 아래와 같은 에러가 발생했을 때 해결하는 방법에 대해 알아 보도록 하자.

Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity

 

 

 

 

해결 방법

-> AVD 를 실행 시켰을 때 RUN 또는 Logcat을 보고 에러를 잡으면 됨.

-> 위의 사진을 보면 Caused by ~ 아래 부터 보면 되는데 MainActivity.Kt 에서 에러가 발생한 것을 알 수 있다.

 

 

 

app > manifests > AndroidManifest.xml 에서 해당 파일 에러나는 곳에 아래 명령어를 추가해주면 해결 된다.

android:theme="@style/Theme.AppCompat"

 

 

 

 

 

 

-> 위의 코드를 추가하면 이런 형태가 된다. (Main 파일, Splash 파일,  두개 다 위와 같은 에러가 발생 함)

 

android:theme="@style/Theme.AppCompat" 명령어를 추가해서 해당 에러 해결 

 

반응형

댓글