gpt4 book ai didi

android - 错误 : Error: No resource found that matches the given name: attr 'colorAccent'

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:31:54 25 4
gpt4 key购买 nike

我正在学习 Material Design,特别是我想使用 Material Design 自定义我的应用程序,也适用于较旧的 Android 版本。我正在阅读本指南:https://developer.android.com/training/material/compatibility.html#SupportLib

关于调色板,指南说:

To obtain material design styles and customize the color palette with the Android v7 Support Library, apply one of the Theme.AppCompat themes:

<!-- extend one of the Theme.AppCompat themes -->
<style name="Theme.MyTheme" parent="Theme.AppCompat.Light">
<!-- customize the color palette -->
<item name="colorPrimary">@color/material_blue_500</item>
<item name="colorPrimaryDark">@color/material_blue_700</item>
<item name="colorAccent">@color/material_green_A200</item>
</style>

当我尝试运行这段代码时,出现了这个错误:

error: Error: No resource found that matches the given name: attr 'colorAccent'.

...以及 colorPrimaryDark 和 colorPrimary 的相同错误!如果我将此代码运行到 values-v21/style.xml 文件中,将“android:”标记放在 colorPrimary、colorPrimaryDark 和 colorAccent 之前,如:

<item name="android:colorPrimary">@color/material_blue_500</item>
<item name="android:colorPrimaryDark">@color/material_blue_700</item>
<item name="android:colorAccent">@color/material_green_A200</item>

它有效!

所以...我不明白我哪里错了 :( 我肯定已经更新了 v7 支持库

任何帮助将不胜感激! :)

最佳答案

尝试

parent="android:Theme.AppCompat.Light"

也可能引用:

No resource found - Theme.AppCompat.Light.DarkActionBar

关于android - 错误 : Error: No resource found that matches the given name: attr 'colorAccent' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27027308/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com