본문 바로가기

Development/Android

<Android-Error> Error retrieving parent for item:No resource found that matches the given name @style/Theme.Holo




안드로이드 개발을 하다보면 아래와 같은 에러가 날 때가 있다.



Error retrieving parent for item:No resource found that matches the given name @style/Theme.Holo


 


이 경우는 ActionBar와 같은 기능을 사용하기 위해 V7을 사용할 때 나는 에러이다. 


이러한 에러가 나는 이유는 Sdk Target버전이 낮게 잡혔기 때문이다. 


ActionBar는 허니콤(API 11) 이후부터 추가되었기 때문에 sdk 3.0이하로 잡혔을 경우, 사용할 수 없다. 


따라서 Sdk Target버전을 API 11이상으로 잡아주면 된다!