본문 바로가기
안드로이드

Error android:TextAppearance.Material.Widget.Button.Inverse

by Dokon Jang 2015. 11. 24.
반응형

안드로이드 스튜디오에서 Tab + Swipe에 대한 구현 테스트를 하려고 프로젝트를 생성하였습니다.

그런데 컴파일을 하니 아래와 같은 오류가 발생하였습니다.

리소스를 찾지 못한다는 에러가 발생입니다.


Error:Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.

Error:Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.


해결 방법은 2가지가 나와있더군.


1) 빌드 SDK를 2.3으로 하여 컴파일을 하면 해결된다고 합니다.

   (SDK를 다시 Install 해야해서 다른 방법을 찾아보았습니다.)


2) 안드로이드 스튜디오의 build.gradle에서 dependencies를 변경하는 방법.

   아래의 이미지에서 

   com.android.support:appcompat-v7:23.1.1의 버젼을 

   com.android.support:appcompat-v7:22.1.1으로 변경 후 다시 컴파일하면 정상적으로 작동합니다.

   (appcompat-v7의 버젼을 23.1.1 → 22.1.1로 변경)


  참고 : 제가 생성한 안드로이드 스튜디오 프로젝트의 빌드 SDK 버젼은 21.1.2입니다.



반응형

댓글