CoordinatorLayout在Android Studio 3.1.3中不起作用?

时间:2018-06-20 22:49:48

标签: android android-studio material-design android-coordinatorlayout

我知道这个问题已经问过很多次了,但是我尝试了大多数解决方案,但没有一个对我有用。 这是我第一次使用android studio 3.1.3,并且正在遵循有关如何使用android studio中的基本模板选项创建简单应用程序的教程。我面临的问题是; enter image description here

  

渲染问题无法在中找到样式“ coordinatorLayoutStyle”   当前主题

我尝试将其添加到build.gradle文件中

  

编译'com.android.support:design:24.1.1'

这也进入了style.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- 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>


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

    Couldn't resolve resource @style/Widget.Design.CoordinatorLayout<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

styles.xml

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.notes"
        minSdkVersion 23
        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.2'
    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'
}

build.gradle

#include <iostream>

using namespace std;

int main()
{
    cout << R"(test\ntest2)" << endl;
    return 0;
}

6 个答案:

答案 0 :(得分:4)

我遇到了同样的问题。我尝试执行以下步骤from here,但问题仍然存在。我认为这是android studio 3.0+中的常见问题,希望他们会在下次更新时予以解决。在Android Studio Preview 3.2中,它可以正常工作。 Download Android Studio Previewvisit here了解如何将其与Android Studio稳定版一起运行

enter image description here

或者您可以尝试将设计库版本降低到27。(并且将sdk编译版本也降低到27)

dependencies { implementation 'com.android.support:appcompat-v7:27.0.2' implementation 'com.android.support:design:27.0.2' }

答案 1 :(得分:1)

尝试在styles.xml中的主题之前添加“基础”,如下所示:-“ Base.Theme.AppCompat.Light.DarkActionBar”

答案 2 :(得分:1)

此问题的永久解决方案:将构建gradle(模块应用)更改为实施com.android.support:appcompat-v7:28.0.0-alpha1

答案 3 :(得分:0)

更改构建gradle(模块应用) 来自:com.android.support:appcompat-v7:28.1.1-alpha3

至:com.android.support:appcompat-v7:27.1.1

答案 4 :(得分:0)

在build.gradle中添加以下内容对我有用:

dependencies {
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
}

答案 5 :(得分:0)

1。首先尝试:在Gradle(模块应用)中更改appcompat:

implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'

2。如果不起作用,请清理您的项目,然后再次构建它。 就我而言,它奏效了。