[안드로이드] You need to use a Theme.AppCompat theme (or descendant) with this activity

2021. 2. 25. 13:15모바일/Android_Java

안드로이드 TabLayout 사용도중 Error Infalting 오류가 발생했습니다 ㅠㅠ

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

범인은.. Tablayout클래스의 내용문에 있었습니다.

android.support.v7.appcompat.R.styleable.textApperance
...

다른 방법으로는 AndroidManifest.xml에서
문제가 발생한 Activity를 아래와 같이 바뀌면 에러가 발생하지 않습니다.

<activity
    android:name=".RecommendFund"
    android:theme="@style/Theme.AppCompat"
    >
</activity>