No resource found that matches the given name: attr 'android:keyboardNavigationCluster'
程序员文章站
2022-08-09 12:02:31
先看报错
/…/appild/intermediates/res/merged/beta/debugalues-v26alues-v26.xml
error:(15, 21) no r...
先看报错
/…/appild/intermediates/res/merged/beta/debugalues-v26alues-v26.xml
error:(15, 21) no resource found that matches the given name: attr ‘android:keyboardnavigationcluster’.
error:(18, 21) no resource found that matches the given name: attr ‘android:keyboardnavigationcluster’.
module 的运行环境
compilesdkversion 25 buildtoolsversion '25.0.2' defaultconfig { applicationid "com.aoben.qproj" minsdkversion 15 targetsdkversion 25 versioncode 1 versionname "1.0" testinstrumentationrunner "android.support.test.runner.androidjunitrunner" vectordrawables.usesupportlibrary = true }
解决方法:
首先,我想我的代码和上次编译没有变动啊。
可能是我的引用出现了问题。
dependencies { compile filetree(include: ['*.jar'], dir: 'libs') androidtestcompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) testcompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support:design:+' ................ compile 'com.squareup.retrofit2:converter-scalars:2.0.0' //======rxjav需要的引用======== compile 'io.reactivex.rxjava2:rxandroid:2.0.1' compile 'io.reactivex.rxjava2:rxjava:2.0.9' //添加.addcalladapterfactory(rxjava2calladapterfactory) compile 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0' //实现view 弹性效果 compile 'me.everything:overscroll-decor-android:1.0.4' compile 'com.takwolf.android:hf-recyclerview:0.1.1' }
当时没看出来,后来百度的解决方法是这样no resource found that matches the given name: attr ‘android:keyboardnavigationcluster’.
用这个方法试了后,发现没有解决问题,而且还出现了新的问题。
所以想不是这个问题。还是回到引用中,突然看到compile 'com.android.support:design:+',后面是用的
+,将这里改为对应编译版本的具体的版本号。如
compile 'com.android.support:design:25.0.0' ,这样以来就解决了,出现问题。
下一篇: 详解VueJS应用中管理用户权限