标签:
styles.xml中<style name="AppBaseTheme" parent="Theme.AppCompat.Light">提示如下错误,这是版本问题。
error: Error retrieving parent for item: No resource found that matches the given name
‘Theme.AppCompat.Light‘.
解决方法:
将
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
改为
<style name="AppBaseTheme" parent="android:Theme.Light">
同理,将
安卓开发中Theme.AppCompat.Light的解决方法
标签:
原文地址:http://www.cnblogs.com/yunqingabc/p/4340377.html