gpt4 book ai didi

android - 错误 : style attribute '@android:attr/windowExitAnimation' not found

转载 作者:IT老高 更新时间:2023-10-28 23:02:00 25 4
gpt4 key购买 nike

我最近升级到了 gradle-3.0.0-alpha8,之后有些样式在编译时没有解析。
开发环境:

  • IDE:Android studio 3.0 Bate3
  • Gradle 构建工具:'com.android.tools.build:gradle:3.0.0-beta3'
  • Gradle :gradle-4.1-all.zip

错误信息:

    Error:(94, 5) style attribute '@android:attr/windowExitAnimation' not found
Error:(94, 5) style attribute '@android:attr/windowEnterAnimation' not found

在 gradle.properties 文件中设置 android.enableAapt2=false 可以解决这个问题。

但是,Instant App 需要 android.enableAapt2=true。我该怎么办?

最佳答案

所有问题都已经解决了。

问题原因:

有两个模块,A_module,B_module。

B_module 有一个样式:

<style name="my_style”> 
<item
name="@android:windowEnterAnimation">@anim/anim_toast_show</item>
<item
name="@android:windowExitAnimation">@anim/anim_toast_hide</item>
</style>

如果 B_module compile(':A_module')
Build or Clean,报错位置在A_module->Res->values->styles:

Error:(94, 5) style attribute '@android:attr/windowExitAnimation' not found
Error:(94, 5) style attribute '@android:attr/windowEnterAnimation' not found

解决方案:
删除项目名称开头的“@”。

<item name="@android:windowEnterAnimation">@anim/anim_toast_show</item>
<item name="@android:windowExitAnimation">@anim/anim_toast_hide</item>

到:

<item name="android:windowEnterAnimation">@anim/anim_toast_show</item>
<item name="android:windowExitAnimation">@anim/anim_toast_hide</item>

关于android - 错误 : style attribute '@android:attr/windowExitAnimation' not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45952607/

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