我已切换到android studio3。在解决了许多问题之后,出现了以下错误消息:

color/colorPrimary,但我遇到这个错误:Error:(87,5)错误:预期的颜色,但得到了(原始字符串)颜色/灰色

android - 错误: expected color but got (raw string) color/gray-LMLPHP

最佳答案

您忘记在@之前添加 color/colorPrimary

一样更改它@color/colorPrimary

示例代码

 <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>

08-18 18:37