提示错误的地方是这里:
<style name="Widget.Support.CoordinatorLayout" parent="android:Widget">
<item name="statusBarBackground">#000000</item>
</style>
如何修改:
在styles.xml 中添加这样一段代码就可以了:
<style name="Widget.Support.CoordinatorLayout" parent="android:Widget">
@null
</style>
error: expected reference but got (raw string) #000000 with Gradle “implementation“
原文:https://www.cnblogs.com/wyong919/p/14862713.html