Error: No resource found that matches the given name: attr 'android:keyboardNavigationCluster'.

因为创建项目的时候选择的SDK等一些下载包的版本问题 在支持V7的时候出现一下这些问题 我们只需要更新自己的SDK以及支持包然后同步一下即可
在app Gradle中android{
compileSdkVersion 26
buildToolsVersion “26.0.1”
defaultConfig {
minSdkVersion 15
targetSdkVersion 26
}
}
dependencies {
compile ‘com.android.support:appcompat-v7:26+’
compile ‘com.android.support:design:26+’
compile ‘com.android.support:recyclerview-v7:26+’
compile ‘com.android.support:cardview-v7:26+’
}

    原文作者:迷失在你de流年
    原文地址: https://www.jianshu.com/p/85328bdf8932
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞