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

알린·2024년 1월 20일
0

TroubleShooting

목록 보기
6/25

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

문제 상황

안드로이드 스튜디오에서 코드 작성 후 첫 번째 Activity까지는 avd가 정상작동 하는데, 다음 액티비티로 넘어가기 위한 버튼을 누르면 바로 강제종료 되며 로그캣에 다음 오류 메세지가 뜬다.

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

해결 방법

[manifests] ➡️ [AndroidManifest.xml] 파일에서 application 태그 안에 있는 안드로이드 테마가 문제였다.
새로운 프로젝트를 생성해서 실행할 때 마다 거의 이 문제로 계속해서 에러가 났던 거 같다 😠

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.MustHaveAndroid"
        tools:targetApi="31">
        <activity
            android:name=".TwoColorActivity"
            android:exported="false" />
        <activity
            android:name=".SubActivity"
            android:exported="false" />
        <activity
            android:name=".MainActivity"
            android:exported="true"
            android:label="@string/app_name"
            android:theme="@style/Theme.MustHaveAndroid">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

위 xml 코드에서 사진 부분의 android:theme를 @style/Theme.MustHaveAndroid가 아닌, android:theme="@style/Theme.AppCompat.Light.NoActionBar"로 바꿔주면 에러가 해결된다.

profile
Android 짱이 되고싶은 개발 기록 (+ ios도 조금씩,,👩🏻‍💻)

0개의 댓글