解决android: AAPT: error: resource style/AppTheme.NoActionBar Android resource linking failed参考方案
程序员文章站
2022-01-09 09:51:54
各版本Gradle下载链接:https://services.gradle.org/distributions/在确保 Android Gradle 插件版本所需的 Gradle 版本兼容的前提下,下表列出了各个 Android Gradle 插件版本所需的 Gradle 版本。要获得最佳性能,您应该使用 Gradle 和插件这两者的最新版本。对于错误android:theme="@style/AppTheme" > AAPT: error: resource style/AppT....
各版本Gradle下载链接:https://services.gradle.org/distributions/
在确保 Android Gradle 插件版本所需的 Gradle 版本兼容的前提下,
下表列出了各个 Android Gradle 插件版本所需的 Gradle 版本。要获得最佳性能,您应该使用 Gradle 和插件这两者的最新版本。
对于错误android:theme="@style/AppTheme" > AAPT: error: resource style/AppTheme.NoActionBar
显然为Styles.xml错误,可将原有的改为以下:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
</resources>
官方开发参考文档:https://developer.android.google.cn/studio/releases/gradle-plugin
本文地址:https://blog.csdn.net/qq_40868987/article/details/107130628
上一篇: Laravel学习记录