You need to use a Theme.AppCompat theme (or descendant) with this activity.
-
You need to use a Theme.AppCompat theme (or descendant) with this activity.안드로이드(java)/에러 관련 2019. 3. 15. 10:52
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. animation을 적용하기 위해서 쓸만한 라이브러리가 뭐가 있을까 찾아보다가 Android Propose 라는 라이브러리를 발견하였습니다. 깃허브에서 해당 sample을 다운받아서 어떻게 동작하나싶어서 코드들을 새로운 프로젝트에 넣었는데 위와같은 에러가 나타났습니다. 스타일이 문제인가 싶어서 스타일쪽을 봤지만 다른설정을 한건없었고 매니페스트에 문제인가 싶어서 봤으나 역시나 다른점은 없었습니다. 그럼 뭔가 AppCompat 관련된 문제가 있나 싶어서 MainActivity 에서 상속받은 AppCompatActiv..