gpt4 book ai didi

android - AAPT : error: attribute android:forceDarkAllowed not found

转载 作者:行者123 更新时间:2023-12-02 03:55:55 25 4
gpt4 key购买 nike

我正在尝试使用 Android 深色主题。我安装 android studio 3.5 预览版。

编译SdkVersion 28 targetSdkVersion 28

但仍然出现此错误。这是黑暗主题错误还是我做错了什么?

build.gradle{
dependencies {
// ...
implementation 'com.google.android.material:material:1.1.0-alpha06'
// ...
}}

样式.xml

<style name="Theme.MyApp" parent="Theme.MaterialComponents.DayNight">
<item name="android:forceDarkAllowed">true</item>
</style>

项目链接

https://github.com/googlesamples/android-DarkTheme

最佳答案

您需要在应用程序 build.gradle 中将 compileSdkVersion 提高到 29:

android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
...
}

那么你应该可以开始了!

关于android - AAPT : error: attribute android:forceDarkAllowed not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56163187/

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