Cannot resolve symbol '@color/white' 解决方法
时间: 2023-10-30 16:29:55 浏览: 367
手动解决Cannot find module '@sentry/webpack-plugin'等问题
5星 · 资源好评率100%
这个错误一般是由于没有正确定义 `@color/white` 引起的。通常情况下,你需要在你的项目的 `res/values/colors.xml` 文件中定义 `white` 颜色,例如:
```xml
<resources>
<color name="white">#FFFFFF</color>
</resources>
```
如果你已经定义了 `white` 颜色,而仍然出现这个错误,那么你需要检查你的代码中是否有使用这个颜色值的地方,是否正确地引用了 `@color/white`。
阅读全文