ERROR: D:\code_workspace\MyApplication1\chapter04\src\main\res\xml\shortcuts.xml:8: AAPT: error: attribute android:enable not found.
时间: 2023-09-23 14:10:52 浏览: 142
这个错误可能是因为你在 `shortcuts.xml` 文件中使用了 `android:enable` 属性,但是该属性在你的 Android SDK 版本中不可用。你可以尝试使用 `android:enabled` 替换 `android:enable` 属性来解决该问题。
如果这个解决方法不起作用,你可以检查你的 Android SDK 是否已经更新到最新版本。如果没有,可以尝试更新你的 Android SDK 并重新构建项目。
相关问题
ERROR: D:\code_workspace\MyApplication1\chapter04\src\main\res\xml\shortcuts.xml:8: AAPT: error: attribute android:shortLabel not found.
这个错误通常是因为在 `shortcuts.xml` 文件中使用了 Android 操作系统不支持的属性,具体是 `android:shortLabel` 属性未找到。你需要检查该文件中的所有属性是否正确并与操作系统相匹配。也可以尝试更新你的 Android Studio 和相关 SDK 工具,以确保使用的是最新版本。
阅读全文