상세 컨텐츠

본문 제목

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

개발/Android

by 뉴에이스 2019. 7. 24. 16:07

본문

특정 액티비티 진입시 Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. 에러가 발생

 

새로운 액티비티 클래스의 setContentView(레이아웃) 코드에서 발생

해당 액티비티는 사용자가 설정한 베이스 액티비티를 상속(extends)받은 상태

 

해결은 AndroidManifest.xml 파일에 액티비티에 android:theme="@style/Theme.AppCompat" 항목 추가

 

<activity

      android:name=".Activity명"

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

 

 

관련글 더보기

댓글 영역