투케이2K

247. (TWOK/ERROR) [Android] You need to use a Theme.AppCompat theme with this activity 본문

투케이2K 에러관리

247. (TWOK/ERROR) [Android] You need to use a Theme.AppCompat theme with this activity

투케이2K 2024. 6. 24. 19:23
반응형

[환경 설정 및 설명]

프로그램 : AndroidStudio

설 명 : [Android] You need to use a Theme.AppCompat theme with this activity

 

[에러 원인]

1. 안드로이드 프로젝트에서 정의 되지 않은 테마를 사용하려는 경우 발생하는 이슈

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

[해결 방법]

방안 [1] : AndroidManifest.xml 파일 수정 - Activity 선언 시 직접 테마 지정

<activity android:name=".webActivity" android:exported="true"

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

방안 [2] : 안드로이드 액티비티 클래스 extends 상속 받는 부분을 Activity 로 변경

public class webActivity extends Activity { }


 

반응형
Comments