您的位置:首页 > 移动开发

错误:No resource found that matches the given name 'Theme.AppCompat.Light'解决方法

2015-10-14 09:01 627 查看
res中styles.xml里
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
发生错误
信息如下:
Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'.

原因:android中的某些API(包括类方法或者XML属性)更换成android版本时,它们的路径已经发生了改变,从而导致编译器无法找到它们,所以编译无法通过。

解决方法:改成
<style name="AppBaseTheme" parent="android:Theme.Light">
(即对应的新的Style)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: