본문 바로가기

개발 이야기

[Android] You need to use a Theme.AppCompat theme (or descendant) with this activity

 

 

[Error]

 

샘플 예제 그대로 테스트하다보면 아래와 같은 에러가 나올 때가 있습니다.

 

You need to use a Theme.AppCompat theme (or descendant) with this activity

 

 

간단하게 해결할 수 있는 방법이에요.

 

 

매니페스트 파일에서 <application>에 있는 theme 속성만 수정해주면 됩니다.

 

 

샘플 테스트에 있던 테마를 아래와 같이 Theme.AppCompat으로 수정해주면 완료 !