[안드로이드] 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>
'모바일 > Android_Java' 카테고리의 다른 글
[android] theme, attr, style, color ,values 정리 (0) | 2021.02.26 |
---|---|
TabLayout Custom View View 안에있는 TextView Selected 안될때 해결법! (0) | 2021.02.25 |
CollapsingTollbar 스크롤 하면서 아이콘 위치 변경하기 (0) | 2021.01.12 |
[카카오페이 메인 클론코딩 2] onslide , onStateChanged, setalpha(블러처리/ 흐리게 하면서 사라지게함), scaleX(화면이 커지고 작아지고)구현 (0) | 2021.01.10 |
[카카오페이 메인 클론코딩 1] BottomSheetBehavior 구현 (0) | 2021.01.10 |