android.support.design.CoordinatorLayout class 未找到

android.support.design.CoordinatorLayout class not found

我在集成新的设计库时遇到了以下崩溃,目前还没有找到解决方法:

充气时出错 class android.support.design.CoordinatorLayout

这是我的 gradle 文件:

android {
compileSdkVersion 23
buildToolsVersion "23.0.0"

defaultConfig {
    applicationId "xxxxxxxx"
    minSdkVersion 14
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
  }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile project(':volley')
    compile 'com.android.support:design:23.0.0'
    compile 'com.android.support:appcompat-v7:23.0.0'
    compile 'com.android.support:support-v4:23.0.0'
    compile 'com.android.support:recyclerview-v7:23.0.0'
    compile 'com.android.support:cardview-v7:23.0.0'
}

...以及应用样式:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->

    <item name="android:colorPrimary">@color/primary</item>
    <item name="android:colorPrimaryDark">@color/primary_dark</item>
    <item name="android:colorAccent">@color/accent</item>
    <item name="android:colorBackground">@android:color/white</item>
    <item name="android:windowBackground">@android:color/white</item>

    <item name="android:colorControlNormal">#cccccc</item>
</style>

public class TabbedScreenActivity extends AppCompatActivity

它在 android.support.design.widget 包中。给 android.support.design.widget.CoordinatorLayout

充气

上面的答案是正确的,还要确保你有与你的构建工具版本相匹配的依赖关系

compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'

我这样做了并且对我有用..