SPRING :: NOTE

[ANDROID] You need to use a Theme.AppCompat theme (or descendant) with this activity 본문

Development Language/JAVA · ANDROID

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

RAYZIE 2019. 1. 31. 17:24
반응형

안드로이드 레이아웃을 투명화 하는 작업 중 나타난 오류때문에 몇시간을 낭비했다.

인터넷에 널리고 널린 소스는 Manifast.xml에 Style에서 추가 한 사용자 테마를 넣는건데

죈종일 아래와 같은 오류만 뿜어댔다.

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

결론적으로는... AppCompatActivity 써서 나는 오류였다.

Style.xml에서 Theme 새로 생성할 때  Parent에 AppComat을 받아 만들면 에러가 안난다...

<style name="TransparentTheme" parent="@style/Theme.AppCompat">


반응형
Comments