使用Android Studio过程中,有时在创建项目之后,在xml文件的预览界面产生如下提示框:
这个问题在是因为styles.xml文件中包名不规范导致的。
解决方法如下:
打开路径:
项目名>res>values>styles.xml
显示代码段:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
修改代码段:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
将parent的值修改为:
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
即在之前加入Base.
问题解决。
参考资料:
16.1.30