今天使用androidstudio运行程序时出现了如下错误,经过查找找到了原因,错误日志描述如下:
最后定位错误在values.xml中找不到资源Theme.AppCompat.Light.DarkActionBar,获取不到colorPrimary,colorPrimaryDark,colorAccent。这些资源是在appcompat库中的,需要在项目的build.gradle中添加appcompat依赖即可。
<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>
添加appcompat依赖库如下:
然后Build->Clear Project/Rebuild Project。