gpt4 book ai didi

android - 第一次安装 Android Studio - 报错

转载 作者:行者123 更新时间:2023-11-29 15:35:43 26 4
gpt4 key购买 nike

我第一次安装 Android Studio 是为了学习如何制作应用。但是我偶然发现了一个错误,每当我创建一个项目时都会遇到这个错误。我得到的错误是这个:

"Render problem - Failed to find style 'coordinatorLayoutStyle' in current Theme.

所以我做了一些搜索,找到了多个像我这样的帖子,为每个人解决这个问题的方法是添加以下代码。

<item name="coordinatorLayoutStyle">@style/Widget.Design.CoordinatorLayout</item>

我在应用程序主题中添加了这行代码,但现在又出现了另一个错误。

Render problem - Couldn't resolve resource @style/Widget.Design.CoordinatorLayout

styles.xml 看起来像这样

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="coordinatorLayoutStyle">@style/Widget.Design.CoordinatorLayout</item>
<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>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

这一行

@style/Widget.Design.CoordinatorLayout

被标记为红色,当鼠标悬停在它上面时,它说“无法解析符号”

此外,这是我的 build.gradle 文件,在这里您可以看到我正在使用最新的设计库并且我正在针对 API 28 进行编译

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.fredrikbiten.myapplication2"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
implementation 'com.android.support.constraint:constraint-layout:1.1.1'
implementation 'com.android.support:design:28.0.0-alpha3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

我没有写任何代码,这都是创建项目时的默认设置。谁知道解决方案?

最佳答案

这是由 API 28 引起的问题。只需转到 API 27(编译和目标版本、依赖项等)并等待他们修复此问题。

我还没有找到真正的解决方案,重建、清理、使缓存无效等。尝试了所有 StackOverflow 答案,但它们也没有用。

关于android - 第一次安装 Android Studio - 报错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50767196/

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