标签:
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">
将
Android Theme.AppCompat.Light的解决方法
标签:
原文地址:http://www.cnblogs.com/freshier/p/4567896.html