gpt4 book ai didi

android - 资源 'attr/font' 的重复值与配置“

转载 作者:太空狗 更新时间:2023-10-29 14:39:59 25 4
gpt4 key购买 nike

我现在真的知道为什么会出现此错误 以及如何解决它。实际上我不确定在收到此错误之前我做了什么。

Error Msg: /Users/hyun/.gradle/caches/transforms-1/files-1.1/appcompat-v7-27.0.1.arr/25699caf34fef6313d6ec32013a1a117f/res/values/values.xml error:duplicate value for resource 'attr/font' with config". error: resource previously defined here

/Users/hyun/Desktop/Laftel-Android/app/build/intermediates/incremental/mergeDbugResources/merged.dir/values/values.xml duplicate value for resource 'attr/font' with config ". resource previously defined here.

Java.util.concurrent.ExecutionException:com.android.tools.appt2.Aapt2Exception:AAPT2 error: check for details Execution failed for task ':app::mergeDebugResources'. Error: java.utilconcurrentExcutionException:com.android.tools.aapt2.Aapt2Exception : AAPT2 error: check logs for details

最佳答案

这个概念可能和我们之前应用自定义字体的逻辑有冲突。

以前

我们使用以下代码为字体创建自定义属性。

    <declare-styleable name="CustomFont">
<attr name="font" format="string" />
</declare-styleable>

我改变了什么

在我的例子中,这是问题所在,我已经通过重命名 attr 名称解决了它

    <declare-styleable name="CustomFont">
<attr name="fontName" format="string" />
</declare-styleable>

如果您使用任何第三方库或具有“字体”属性的自定义 View

,同样的事情可能适用

根据 reverie_ss 的建议请检查您的res->values->attrs.xml

关于android - 资源 'attr/font' 的重复值与配置“,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49767973/

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